<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/src, branch v0.1.2</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>doc: Add whitespace before parens. #4202</title>
<updated>2016-02-08T18:43:27+00:00</updated>
<author>
<name>Diego Viola</name>
<email>diego.viola@gmail.com</email>
</author>
<published>2016-02-09T03:38:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f8f92a2360b4eb8bae2ff8604e3648c54e62850d'/>
<id>f8f92a2360b4eb8bae2ff8604e3648c54e62850d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4175 from watiko/vim-7.4.700</title>
<updated>2016-02-07T06:33:01+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-07T06:33:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=827e267800417b8fdd1340d54f5dc5fa9d81bb92'/>
<id>827e267800417b8fdd1340d54f5dc5fa9d81bb92</id>
<content type='text'>
vim-patch:7.4.700</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.700</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4176 from watiko/vim-7.4.689</title>
<updated>2016-02-07T06:01:03+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-07T06:01:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=bd3ea7227ee04a913c1cc5487979ad67dda290f9'/>
<id>bd3ea7227ee04a913c1cc5487979ad67dda290f9</id>
<content type='text'>
vim-patch:7.4.689</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.689</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.689</title>
<updated>2016-02-07T04:40:07+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-03T18:47:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=1ecbfd19db9c45d25c6793cedf019e30bf4a30a3'/>
<id>1ecbfd19db9c45d25c6793cedf019e30bf4a30a3</id>
<content type='text'>
Problem:    On MS-Windows, when 'autochdir' is set, diff mode with files in
            different directories does not work. (Axel Bender)
Solution:   Remember the current directory and use it where needed. (Christian
            Brabandt)

https://github.com/vim/vim/commit/d87c36ea5eae50580f3c733734669250cc969019

---

see: "autochdir + encoding=utf8 messes up diff"
     https://groups.google.com/d/msg/vim_dev/QrE4Y2LMJR8/uxigns5KGxYJ
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    On MS-Windows, when 'autochdir' is set, diff mode with files in
            different directories does not work. (Axel Bender)
Solution:   Remember the current directory and use it where needed. (Christian
            Brabandt)

https://github.com/vim/vim/commit/d87c36ea5eae50580f3c733734669250cc969019

---

see: "autochdir + encoding=utf8 messes up diff"
     https://groups.google.com/d/msg/vim_dev/QrE4Y2LMJR8/uxigns5KGxYJ
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.693 #4172</title>
<updated>2016-02-07T03:54:36+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-05T01:46:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9b19335c6ed02963dc54c96aeb757fa98e736440'/>
<id>9b19335c6ed02963dc54c96aeb757fa98e736440</id>
<content type='text'>
Problem:    Session file is not correct when there are multiple tab pages.
Solution:   Reset the current window number for each tab page. (Jacob Niehus)

https://github.com/vim/vim/commit/695baeefe17adcd95f91d089efee87bd96fc98db

---

see: "[patch] wincmd error during session restore"
     https://groups.google.com/d/msg/vim_dev/NykQ0UuOjXc/_MZi4sv9vp0J

What I did for testing:

```sh
mkdir /tmp/test_session
cd $_

function test_session() {
  $1 -u NONE -i NONE -N ~/.vimrc \
    -c 'wincmd s'      \
    -c 'wincmd v'      \
    -c 'wincmd T'      \
    -c 'normal 1gt'    \
    -c '2wincmd w'     \
    -c 'mks! test.vis' \
    -c 'qa'
  $1 -u NONE -i NONE -N -S test.vis
}

test_session vim
test_session nvim
test_session /path/to/your/neovim/repository/build/bin/nvim
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Session file is not correct when there are multiple tab pages.
Solution:   Reset the current window number for each tab page. (Jacob Niehus)

https://github.com/vim/vim/commit/695baeefe17adcd95f91d089efee87bd96fc98db

---

see: "[patch] wincmd error during session restore"
     https://groups.google.com/d/msg/vim_dev/NykQ0UuOjXc/_MZi4sv9vp0J

What I did for testing:

```sh
mkdir /tmp/test_session
cd $_

function test_session() {
  $1 -u NONE -i NONE -N ~/.vimrc \
    -c 'wincmd s'      \
    -c 'wincmd v'      \
    -c 'wincmd T'      \
    -c 'normal 1gt'    \
    -c '2wincmd w'     \
    -c 'mks! test.vis' \
    -c 'qa'
  $1 -u NONE -i NONE -N -S test.vis
}

test_session vim
test_session nvim
test_session /path/to/your/neovim/repository/build/bin/nvim
```
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4157 from watiko/vim-7.4.694</title>
<updated>2016-02-05T15:02:38+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-05T15:02:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d9cada146fbb476fc2239cc2235deeff2ab8c1dd'/>
<id>d9cada146fbb476fc2239cc2235deeff2ab8c1dd</id>
<content type='text'>
vim-patch:7.4.{662,694}</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.{662,694}</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.688 #4159</title>
<updated>2016-02-05T14:54:03+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-03T18:01:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7b955802b3c5ca32467b58e09786e40d167fd3aa'/>
<id>7b955802b3c5ca32467b58e09786e40d167fd3aa</id>
<content type='text'>
Problem:    When "$" is in 'cpo' the popup menu isn't undrawn correctly.
            (Issue 166)
Solution:   When using the popup menu remove the "$".

https://github.com/vim/vim/commit/478c46e50fd94f270369ec1c5f76aa65af7ee671

NOTE: To reproduce in nvim:
    nvim -u NONE -c 'exe "norm iaaa iabbbbbb acc" | norm yyp' -c 'set cpo+=$'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    When "$" is in 'cpo' the popup menu isn't undrawn correctly.
            (Issue 166)
Solution:   When using the popup menu remove the "$".

https://github.com/vim/vim/commit/478c46e50fd94f270369ec1c5f76aa65af7ee671

NOTE: To reproduce in nvim:
    nvim -u NONE -c 'exe "norm iaaa iabbbbbb acc" | norm yyp' -c 'set cpo+=$'
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Migrate legacy test 45.</title>
<updated>2016-02-05T04:55:27+00:00</updated>
<author>
<name>Lucas Hoffmann</name>
<email>l-m-h@web.de</email>
</author>
<published>2015-05-15T17:03:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=86c5696c274577ceec1dfabe6e92cf480250f865'/>
<id>86c5696c274577ceec1dfabe6e92cf480250f865</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.700</title>
<updated>2016-02-05T03:21:14+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-05T03:07:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=69e448d1d871c648bd1fc0c6067803bdc06c3e5b'/>
<id>69e448d1d871c648bd1fc0c6067803bdc06c3e5b</id>
<content type='text'>
Problem:    Fold can't be opened after ":move". (Ein Brown)
Solution:   Delete the folding information and update it afterwards.
            (Christian Brabandt)

https://github.com/vim/vim/commit/d5f6933d5c57ea6f79bbdeab6c426cf66a393f33
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Fold can't be opened after ":move". (Ein Brown)
Solution:   Delete the folding information and update it afterwards.
            (Christian Brabandt)

https://github.com/vim/vim/commit/d5f6933d5c57ea6f79bbdeab6c426cf66a393f33
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4155 from justinmk/gui_running</title>
<updated>2016-02-04T06:21:26+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-04T06:21:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=add02b675d4e974a971d4403e1e2ad20a7f78938'/>
<id>add02b675d4e974a971d4403e1e2ad20a7f78938</id>
<content type='text'>
ui: revert "gui_running" hack</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ui: revert "gui_running" hack</pre>
</div>
</content>
</entry>
</feed>
