We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3deeee5 commit c13e317Copy full SHA for c13e317
1 file changed
justfile
@@ -34,6 +34,14 @@ gpreview JUSTFILE='': (_preview_common 'gvim -f' JUSTFILE)
34
[no-cd]
35
npreview JUSTFILE='': (_preview_common 'nvim' JUSTFILE)
36
37
+# preview JUSTFILE in Vim with stock config + syntax file from this repository
38
+[no-cd]
39
+stock-preview JUSTFILE='': (_preview_common 'vim --clean' JUSTFILE)
40
+
41
+# preview JUSTFILE in Neovim with stock config + syntax file from this repository
42
43
+stock-npreview JUSTFILE='': (_preview_common 'nvim --clean' JUSTFILE)
44
45
46
_preview_common vimcmd JUSTFILE:
47
{{vimcmd}} \
0 commit comments