Branch: refs/heads/master
  Home:   https://github.com/yi-editor/yi
  Commit: 170d78ce1a3be0387c14a38e1a3d80d289e8e005
      
https://github.com/yi-editor/yi/commit/170d78ce1a3be0387c14a38e1a3d80d289e8e005
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-01-28 (Sun, 28 Jan 2018)

  Changed paths:
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs

  Log Message:
  -----------
  Show line numbers in vty frontend.


  Commit: 6e68c29e170c27dc8cf3968121deaf5be7ed22db
      
https://github.com/yi-editor/yi/commit/6e68c29e170c27dc8cf3968121deaf5be7ed22db
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-02 (Fri, 02 Feb 2018)

  Changed paths:
    A yi-core/src/Yi/UI/LineNumbers.hs
    M yi-core/yi-core.cabal
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs

  Log Message:
  -----------
  Make line numbers configurable.

Adds a module Yi.UI.LineNumbers which defines a YiVariable
'DisplayLineNumbers' which toggles line numbers globally.


  Commit: b917dd0dc22e458b8635ce763d33f13005910188
      
https://github.com/yi-editor/yi/commit/b917dd0dc22e458b8635ce763d33f13005910188
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-02 (Fri, 02 Feb 2018)

  Changed paths:
    M yi-keymap-vim/src/Yi/Keymap/Vim/Ex.hs
    A yi-keymap-vim/src/Yi/Keymap/Vim/Ex/Commands/Number.hs
    M yi-keymap-vim/yi-keymap-vim.cabal

  Log Message:
  -----------
  Add a vim ex command to toggle line numbers.


  Commit: a419bfd3b1964077013cff7ecc3f38a06d1236b6
      
https://github.com/yi-editor/yi/commit/a419bfd3b1964077013cff7ecc3f38a06d1236b6
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-03 (Sat, 03 Feb 2018)

  Changed paths:
    M yi-core/src/Yi/UI/LineNumbers.hs
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs

  Log Message:
  -----------
  Add a buffer-local version of 'DisplayLineNumbers`.

The global setting will only be used if the local setting is Nothing.


  Commit: 3f76805fb874721887f18301282cf6f8a80f2c99
      
https://github.com/yi-editor/yi/commit/3f76805fb874721887f18301282cf6f8a80f2c99
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-03 (Sat, 03 Feb 2018)

  Changed paths:
    M yi-keymap-vim/src/Yi/Keymap/Vim/Ex/Commands/Number.hs

  Log Message:
  -----------
  Update the 'set number' ex command.

Now we define these commands:
- :set [no]number       (toggle buffer-local line numbers)
- :set [no]globalnumber (toggle global line numbers)
- :unset number         (unset the local setting)


  Commit: bd21cae5533c201bd06c10b39f445cdf872658e6
      
https://github.com/yi-editor/yi/commit/bd21cae5533c201bd06c10b39f445cdf872658e6
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-04 (Sun, 04 Feb 2018)

  Changed paths:
    M yi-core/src/Yi/UI/LineNumbers.hs
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs
    M yi-keymap-vim/src/Yi/Keymap/Vim/Ex/Commands/Number.hs

  Log Message:
  -----------
  Export a nicer interface in Yi.UI.LineNumbers.


  Commit: 99292b7e96530761a9cb4a180d086d48bb3afb1e
      
https://github.com/yi-editor/yi/commit/99292b7e96530761a9cb4a180d086d48bb3afb1e
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-04 (Sun, 04 Feb 2018)

  Changed paths:
    M yi-keymap-vim/README.rst

  Log Message:
  -----------
  Document the incompatibility to vim's :set number.


  Commit: d7d27fadae8a1c65cc62aa13adff83452d3d5fa2
      
https://github.com/yi-editor/yi/commit/d7d27fadae8a1c65cc62aa13adff83452d3d5fa2
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-09 (Fri, 09 Feb 2018)

  Changed paths:
    M yi-core/src/Yi/Config/Default.hs
    M yi-core/src/Yi/Types.hs
    M yi-core/src/Yi/UI/LineNumbers.hs
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs
    M yi-keymap-vim/src/Yi/Keymap/Vim/Ex/Commands/Number.hs

  Log Message:
  -----------
  Make global line numbers a field in 'Config'.

- Remove the DisplayLineNumbers YiVariable and add a field
`configLineNumbers` in `ConfigUI`
- Remove the `:set globalnumber` ex command


  Commit: 4a5f28216a58c9ab3db385cb7f271c59e32193ed
      
https://github.com/yi-editor/yi/commit/4a5f28216a58c9ab3db385cb7f271c59e32193ed
  Author: Philip Kranz <p...@pmlk.net>
  Date:   2018-02-09 (Fri, 09 Feb 2018)

  Changed paths:
    M yi-core/src/Yi/Config/Simple.hs

  Log Message:
  -----------
  Add lineNumbers to Yi.Config.Simple


  Commit: 2c715b1594b86a7fa71b2cb9521c31535195d3b4
      
https://github.com/yi-editor/yi/commit/2c715b1594b86a7fa71b2cb9521c31535195d3b4
  Author: Jaro Reinders <noughtm...@users.noreply.github.com>
  Date:   2018-02-19 (Mon, 19 Feb 2018)

  Changed paths:
    M yi-core/src/Yi/Config/Default.hs
    M yi-core/src/Yi/Config/Simple.hs
    M yi-core/src/Yi/Types.hs
    A yi-core/src/Yi/UI/LineNumbers.hs
    M yi-core/yi-core.cabal
    M yi-frontend-vty/src/Yi/Frontend/Vty.hs
    M yi-keymap-vim/README.rst
    M yi-keymap-vim/src/Yi/Keymap/Vim/Ex.hs
    A yi-keymap-vim/src/Yi/Keymap/Vim/Ex/Commands/Number.hs
    M yi-keymap-vim/yi-keymap-vim.cabal

  Log Message:
  -----------
  Merge pull request #1062 from talanis85/vty-line-numbers

Show line numbers in vty frontend


Compare: https://github.com/yi-editor/yi/compare/b60347803c43...2c715b1594b8

-- 
Yi development mailing list
yi-devel@googlegroups.com
http://groups.google.com/group/yi-devel
--- 
You received this message because you are subscribed to the Google Groups 
"yi.devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to yi-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to