Nvim: add json schema store
Allows automatically fetching schemas in json files without specifying schema
This commit is contained in:
parent
a7d3c0a6ee
commit
ce475402bc
2 changed files with 25 additions and 2 deletions
9
scripts/fhackeditor
Executable file
9
scripts/fhackeditor
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
# Script to launch a graphical editor if in graphical mode,
|
||||
# terminal editor otherwise
|
||||
|
||||
if [ -n "$DISPLAY" ] || [ -n "$WAYLAND_DISPLAY" ]; then
|
||||
echo "Running in graphical mode"
|
||||
else
|
||||
echo "Running in TTY mode"
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue