aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMatthieu Coudron <teto@users.noreply.github.com>2021-08-16 06:24:59 +0200
committerGitHub <noreply@github.com>2021-08-15 21:24:59 -0700
commit5a111c1b02bbfbc2b42df11d7205153be0893dff (patch)
tree4b8023a1bf4d95a59262ddd867a02573a20af3f6 /contrib
parentaa07d06bf44b3931c04bb1db5043c0fbe30548f4 (diff)
downloadrneovim-5a111c1b02bbfbc2b42df11d7205153be0893dff.tar.gz
rneovim-5a111c1b02bbfbc2b42df11d7205153be0893dff.tar.bz2
rneovim-5a111c1b02bbfbc2b42df11d7205153be0893dff.zip
feat(defaults): map Y to y$ #13268
rationale: - consistent with D and Y - long recommended by Vim's own ":help Y" close #13268 close #416 ref #6289
Diffstat (limited to 'contrib')
-rw-r--r--contrib/flake.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/flake.nix b/contrib/flake.nix
index c601377cd0..d07067a7a1 100644
--- a/contrib/flake.nix
+++ b/contrib/flake.nix
@@ -106,9 +106,10 @@
clang-tools # for clangd to find the correct headers
];
- shellHook = ''
+ shellHook = oa.shellHook + ''
export NVIM_PYTHON_LOG_LEVEL=DEBUG
export NVIM_LOG_FILE=/tmp/nvim.log
+ export ASAN_SYMBOLIZER_PATH=${pkgs.llvm_11}/bin/llvm-symbolizer
# ASAN_OPTIONS=detect_leaks=1
export ASAN_OPTIONS="log_path=./test.log:abort_on_error=1"
@@ -118,6 +119,10 @@
# when running the functionaltests
mkdir -p outputs/out/share/nvim/syntax
touch outputs/out/share/nvim/syntax/syntax.vim
+
+ # for treesitter functionaltests
+ mkdir -p runtime/parser
+ cp -f ${pkgs.tree-sitter.builtGrammars.tree-sitter-c}/parser runtime/parser/c.so
'';
});
});