summaryrefslogtreecommitdiff
path: root/scratch/nvim_ffi.lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-01-11 13:29:37 -0500
committerGitHub <noreply@github.com>2021-01-11 13:29:37 -0500
commit8783bea06e1e0dfa8dfd4834058923088471d832 (patch)
tree050096ba649a94bb01e7c0b3a029e9b4eb060029 /scratch/nvim_ffi.lua
parentde80a9837cd1d207981c1f6dbf504436f8bfee13 (diff)
feat: quickfix (#293)
* feat: quickfix (not implemented) * [WIP]: Wed 09 Dec 2020 11:11:30 PM EST * somewhat working linked list impl * getting closer * might be working * might be working for real * works and implemented basic example * dont forget to close prompt * fix descending and add more tests * test fixes * fix test * more logging * Fix some more tests * Fix logging messing up tests * fix: lint * fix: multi select stuffs
Diffstat (limited to 'scratch/nvim_ffi.lua')
-rw-r--r--scratch/nvim_ffi.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scratch/nvim_ffi.lua b/scratch/nvim_ffi.lua
index 3a48ada..6fc01c1 100644
--- a/scratch/nvim_ffi.lua
+++ b/scratch/nvim_ffi.lua
@@ -2,8 +2,8 @@ local ffi = require("ffi")
-- ffi.load("/home/tj/build/neovim/build/include/eval/funcs.h.generated.h")
ffi.cdef [[
-typedef unsigned char char_u;
-char_u *shorten_dir(char_u *str);
+ typedef unsigned char char_u;
+ char_u *shorten_dir(char_u *str);
]]
local text = "scratch/file.lua"