mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
e995b21567
This feature was accidentally removed when doing the initial import from vim. It makes vim use pipes instead of temporary files for filtering buffers through shell commands. I found that this was missing when looking for references of SHELL_READ/SHELL_WRITE outside mch_call_shell`. When `mch_call_shell` is reimplemented on top of libuv process management facilities, pipes will always be used for communication with child processes so it makes sense to enable the feature permanently.
56 lines
1.0 KiB
Plaintext
56 lines
1.0 KiB
Plaintext
# Build/deps dir
|
|
/build/
|
|
/dist/
|
|
/.deps/
|
|
/tmp/
|
|
|
|
*.rej
|
|
*.orig
|
|
*.mo
|
|
*.swp
|
|
*~
|
|
*.pyc
|
|
*.o
|
|
*.so
|
|
|
|
/src/po/vim.pot
|
|
/src/po/*.ck
|
|
|
|
# Files generated by the tests
|
|
/src/testdir/mbyte.vim
|
|
/src/testdir/mzscheme.vim
|
|
/src/testdir/lua.vim
|
|
/src/testdir/small.vim
|
|
/src/testdir/tiny.vim
|
|
/src/testdir/test*.out
|
|
/src/testdir/test.log
|
|
/src/testdir/viminfo
|
|
/src/testdir/test.ok
|
|
/src/testdir/*.failed
|
|
/src/testdir/X*
|
|
/src/testdir/valgrind.*
|
|
/src/testdir/.gdbinit
|
|
|
|
# Folder generated by the unit tests
|
|
/test/includes/post/
|
|
|
|
# luarocks, not added as a subtree because of the large number of blobs
|
|
/third-party/luarocks
|
|
|
|
# luajit files
|
|
/third-party/luajit/src/host/buildvm
|
|
/third-party/luajit/src/host/buildvm_arch.h
|
|
/third-party/luajit/src/host/minilua
|
|
/third-party/luajit/src/jit/vmdef.lua
|
|
/third-party/luajit/src/libluajit.a
|
|
/third-party/luajit/src/lj_bcdef.h
|
|
/third-party/luajit/src/lj_ffdef.h
|
|
/third-party/luajit/src/lj_folddef.h
|
|
/third-party/luajit/src/lj_libdef.h
|
|
/third-party/luajit/src/lj_recdef.h
|
|
/third-party/luajit/src/lj_vm.s
|
|
/third-party/luajit/src/luajit
|
|
|
|
# local make targets
|
|
local.mk
|