Alfred + eslint in vim fixes

main
Steffen Rademacker 3 years ago
parent fcd4b55fd6
commit b20d891e2b

@ -2,7 +2,7 @@
////////////////////////////
// coc-calc
// coc-css
// coc-eslint
// coc-eslint8 // -- fall back to non-8 when supported offically
// coc-html
// coc-json
// coc-markdownlint
@ -18,8 +18,6 @@
"typescriptreact",
"javascriptreact",
"javascript",
"scss",
"css",
"json",
"yaml"
],

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2018 - 2020 Tilman Ginzel, Robin Trietsch
Copyright (c) 2018 - 2021 Tilman Ginzel, Robin Trietsch
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

@ -42,7 +42,7 @@ See [#9](https://github.com/tilmanginzel/alfred-bluetooth-workflow/issues/9) for
```
The MIT License (MIT)
Copyright (c) 2018 - 2019 Tilman Ginzel, Robin Trietsch
Copyright (c) 2018 - 2021 Tilman Ginzel, Robin Trietsch
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 34 KiB

@ -129,7 +129,7 @@
<key>uid</key>
<string>D1F62184-2F0A-4BDB-A1C0-63C67DD19002</string>
<key>version</key>
<integer>2</integer>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
@ -406,6 +406,10 @@
<integer>590</integer>
</dict>
</dict>
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>0.11.1</string>
<key>webaddress</key>
<string>https://github.com/tilmanginzel/alfred-bluetooth-workflow</string>
</dict>

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 134 KiB

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

@ -9,7 +9,7 @@ TITLE=$2
if [[ $(../blueutil --is-connected ${DEVICE}) -eq 1 ]]
then
../blueutil --disconnect ${DEVICE}
sleep 1 # wait a second as --is-connected might return incorrect result
../blueutil --wait-disconnect ${DEVICE} 5
if [[ $(../blueutil --is-connected ${DEVICE}) -eq 0 ]]
then
./notify.sh -m "Disconnected from ${TITLE}"
@ -18,7 +18,7 @@ then
fi
else
../blueutil --connect ${DEVICE}
sleep 1 # wait a second as --is-connected might return incorrect result
../blueutil --wait-connect ${DEVICE} 5
if [[ $(../blueutil --is-connected ${DEVICE}) -eq 1 ]]
then
./notify.sh -m "Connected to ${TITLE}" -i success

Loading…
Cancel
Save