Marco Hinz
282aa12fb4
Check if Unix domain socket is connectable before attaching
2017-09-30 14:13:15 +02:00
Marco Hinz
d28c9c00bf
Remove useless level of indentation
2017-09-30 12:59:01 +02:00
Marco Hinz
538e18be6d
Move address type detection logic into own function
2017-09-30 12:58:51 +02:00
Marco Hinz
3926064c43
Bump to 1.8.3
2017-09-29 17:31:06 +02:00
Marco Hinz
ec612dc16c
Improve check for IPv4 address
...
If the address contains only one colon followed by a number, assume TCPv4 and
a Unix domain otherwise.
Closes #60 .
2017-09-29 17:20:20 +02:00
Marco Hinz
dac335752a
setup.py: rst -> md
2017-09-29 17:11:05 +02:00
Marco Hinz
2b7853ef8e
README: move installation instructions to INSTALLATION.md
...
Closes #59 .
2017-09-29 17:09:08 +02:00
Marco Hinz
58b0783d0a
README: switch back to Markdown
2017-09-29 16:39:09 +02:00
Marco Hinz
200699c71c
README: no support for Windows
...
Closes #53 .
2017-09-13 13:26:51 +02:00
Marco Hinz
d138b98bde
Ignore "E37: No write since last change" in --remote*
...
References https://github.com/mhinz/neovim-remote/issues/54
2017-08-07 02:02:29 +02:00
Marco Hinz
64e9f486a1
Revert "Temporarily reset &modified when opening files"
...
This reverts commit 6845b8b5a6
.
2017-08-07 01:58:31 +02:00
Marco Hinz
6845b8b5a6
Temporarily reset &modified when opening files
...
:edit and similar commands used by the --remote* options throw an exception if
the buffer is modified:
E37: No write since last change (add ! to override)
Using :enew! doesn't work, since it reverts all changes. Thus we simply reset
&modified temporarily.
References https://github.com/mhinz/neovim-remote/issues/54
2017-08-07 00:35:33 +02:00
Marco Hinz
3fc53ac12a
Release v1.8.0
2017-08-04 02:49:22 +02:00
Marco Hinz
c1fedb4de8
Redirect stdout to stdin when forking
...
This is needed so the new nvim process ignores the data in stdin, because it
comes from a TTY now.
2017-08-04 02:41:54 +02:00
Marco Hinz
4b8c384462
Only process + at the beginning of --remote*
...
nvr +1 +2 3 +4 5
The above will do the following in the given order:
- open file "5"
- open file "+4"
- open file "3"
- execute :2
- execute :1
That's how Vim does it.
2017-08-02 15:42:02 +02:00
Marco Hinz
957082771b
Ignore OSError instead of FileNotFoundError
2017-08-02 12:10:03 +02:00
Marco Hinz
13808fd5ec
Ignore only invalid addresses
2017-08-02 11:52:11 +02:00
Harm te Hennepe
a85aa94321
Support multiple + commands and let empty + go to the last line
2017-08-02 11:46:35 +02:00
Drew Neil
ee9a6c4f39
Document -p
flag independent of --remote-tab
flag
2017-08-01 16:40:59 +02:00
Marco Hinz
74a2baf3b5
README: mention $NVR_CMD
2017-07-28 11:46:23 +02:00
Marco Hinz
a973424000
Make -s overwrite all other options
...
References https://github.com/mhinz/neovim-remote/issues/48#issuecomment-318163612
2017-07-27 00:29:08 +02:00
Marco Hinz
6debd11547
Makefile: ditch twine for uploading
2017-07-26 01:52:02 +02:00
Marco Hinz
625b8ddf45
Change command to run using $NVR_CMD
...
References https://github.com/mhinz/neovim-remote/issues/48
2017-07-26 01:07:10 +02:00
Marco Hinz
4e827d4d7d
Process all options before waiting
...
References https://github.com/mhinz/neovim-remote/issues/46
2017-07-11 15:46:44 +02:00
Marco Hinz
3ad6b4371d
Release v1.7.1
2017-06-30 02:51:33 +02:00
Marco Hinz
fa9ecbcc71
--serverlist: don't print empty lines
2017-06-30 02:18:58 +02:00
Marco Hinz
af4103a16a
Sort short options in help output
2017-06-30 02:09:42 +02:00
Marco Hinz
5df48bbf2c
Add -s option
2017-06-30 02:06:35 +02:00
Marco Hinz
b4c0382ca1
README: fix ToC order
2017-06-23 19:01:21 +02:00
Marco Hinz
276f1258f1
Release v1.7.0
2017-06-23 18:51:10 +02:00
Marco Hinz
05d0d97451
README: reorder sections
2017-06-23 18:06:44 +02:00
Marco Hinz
aea617c158
README: add git use case
2017-06-23 18:03:20 +02:00
Marco Hinz
031c7a911f
Rename variable "flags" to "options"
2017-06-20 21:15:25 +02:00
Marco Hinz
70f8bf86d7
Docs: add nvr/git example to help message
2017-06-20 21:13:15 +02:00
Marco Hinz
1e9be0473f
Docs: instance -> process
2017-06-20 20:50:55 +02:00
Marco Hinz
2111ea9d0a
Consider the possibility that "nvim" is not in $PATH
2017-06-20 20:26:56 +02:00
Marco Hinz
6e1fe04456
Make forked child try attaching multiple times
...
This most likely makes it attach faster than the previous fixed 1 second
timeout.
2017-06-20 15:11:32 +02:00
Marco Hinz
58d56cba6b
More robust socket handling
2017-06-20 15:03:06 +02:00
Marco Hinz
8f8fa3ed27
Improve the start of a new instance
...
If the given instance is not found, we fork nvr.
The parent process gets replaced by a new nvim instance.
The child waits for one second and then tries attaching to the newly started
nvim instance.
Advantage: All options passed to nvr are now correctly handled even by new nvim
instances that were started by nvr.
References https://github.com/mhinz/neovim-remote/issues/44
2017-06-20 13:47:59 +02:00
Marco Hinz
7422ee6d90
Handle files beginning with - for --remote options
...
Small tradeoff: You get no error anymore when you provide no arguments to
--remote and friends.
Internally this results in an empty list instead of None. This is important,
because otherwise you'd get an error with `--remote -- foo`, because `--` and
`foo` would be parsed into the remaining arguments and --remote had no argument.
In return it's now possible to provide files beginning with a dash to any
--remote option. Leading -- before those files is not needed.
Equivalent:
--remote --file
--remote -- --file
Fixes https://github.com/mhinz/neovim-remote/issues/43
2017-06-19 15:01:05 +02:00
Marco Hinz
53ce66cf98
Setup: mention support for Python 3.6
2017-05-25 15:47:12 +02:00
Marco Hinz
e2a35a4963
README: add TravisCI badge
2017-05-25 01:15:45 +02:00
Marco Hinz
1cf3ce4cbc
Add .travis.yml
2017-05-25 01:09:52 +02:00
Marco Hinz
1bcc77e299
Tests: add first pytest
2017-05-25 00:13:26 +02:00
Marco Hinz
39519a7b00
Make main() take optional environment
2017-05-24 20:40:40 +02:00
Marco Hinz
aee0fa049c
Rename package to "nvr"
2017-05-24 14:37:11 +02:00
Marco Hinz
aa84e9369f
Make main() take optional arguments
2017-05-23 23:05:46 +02:00
Raghu
53cd4962f8
Update setup.py to use 'console_scripts'
...
setup will generate appropriate executable sccripts on all platforms.
Tested on windows 8.1
2017-05-23 16:01:05 +02:00
Marco Hinz
8bd0629ec9
Makefile: use "rm -rf" for clean
2017-04-27 13:27:47 +02:00
Marco Hinz
f78e3a9f0e
Make --serverlist work for real
2017-04-27 13:24:33 +02:00