We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 087cc1f + 135f2e2 commit 6a1326dCopy full SHA for 6a1326d
lib/init.lua
@@ -0,0 +1,3 @@
1
+-- add project root to lua package path so requires work when the cwd is not
2
+-- the project root
3
+package.path = PANDOC_STATE.user_data_dir .. "/../?.lua;" .. package.path
panvimdoc.sh
@@ -139,6 +139,7 @@ ARGS=(
139
# Add an additional lua filter if demojify is true
140
if [[ ${DEMOJIFY:-false} == "true" ]]; then
141
ARGS+=(
142
+ "--data-dir=$SCRIPTS_DIR/../lib"
143
"--lua-filter=$SCRIPTS_DIR/remove-emojis.lua"
144
)
145
fi
0 commit comments