Yggdroot
Yggdroot
https://github.com/neovim/neovim/issues/8382
```python import subprocess aaa = subprocess.check_output('pt -g"" .', shell=True) bbb = subprocess.Popen('pt -g "" .',shell=True,stdout=subprocess.PIPE).stdout.read() ccc = subprocess.Popen('pt -g "" .',shell=True,stdin=subprocess.PIPE,stdout=subprocess.PIPE).stdout.read() print aaa print bbb print ccc ``` The result...
- `nvim --version`: NVIM v0.4.3 - `vim -u DEFAULTS` (version: ) behaves differently? - Operating system/version: MacOS - Terminal name/version: - `$TERM`: xterm-256color ### Steps to reproduce using `nvim -u...
### Steps to reproduce 1. test.vim: ```vim func MyFilter(winid, key) return 0 endfunc let id = popup_create(bufnr('%'), \ {'line':0, 'col':0, 'padding': [0, 1, 1, 1], \ 'maxwidth':60, 'minheight':7, 'border':[1,1,1,1], \...
### Steps to reproduce 1. suppose "abc" is in the clipboard. 2. `:while 1 | echom getchar() | endw` 3. press Ctrl+Shift+V 4. only the ascii of the first character...
I have `let g:ackhighlight = 1` in my vimrc. After `Ack xxx`, the last cmd in history list is `let &hlsearch=1 | echo`.
neovim has `nvim_buf_set_extmark` to create virtual text, it supports the "overlay" virtual text positon. ``` • virt_text_pos : position of virtual text. Possible values: • "eol": right after eol character...