dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 727715e8cef7c4be4cc049eef2df0858a99e735c
parent ab81d7036ffd616ab64ee2b8e4353ddb73292daa
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 19 Feb 2020 01:55:53 +0100

vim: ultisnips launchd snippet fix

Former-commit-id: dca0c1f1d3d4fafcd8f6b7ac7120c0f19f53f1ba
Diffstat:
Mvim/ultisnips/all.snippets | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/vim/ultisnips/all.snippets b/vim/ultisnips/all.snippets @@ -8,10 +8,17 @@ snippet launchd "A launchd job template" b <string>${1:com.example.app}</string> <key>Program</key> <string>${2:/path/to/script}</string> + <!-- + <key>ProgramArguments</key> + <array> + <string></string> + <string></string> + </array> + --> <key>RunAtLoad</key> <${3:true if run on boot/login}/> <key>StartInterval</key> - <integer>${4:interval in which to run in seconds}</integer> + <integer>${4:interval in which to run in seconds; then keepalive should be false}</integer> <key>KeepAlive</key> <${5:true if the job should always be running, or e.g. dict with SuccessfulExit}/> </dict>