remove places

This commit is contained in:
Tyrel Souza 2023-01-02 18:57:04 -05:00
parent 4b006ebea9
commit 61a556abdf
7 changed files with 1 additions and 26 deletions

View File

@ -1,6 +0,0 @@
#!/bin/bash
APPS=/Applications
if [ -d "$APPS" ]; then
$(/Applications/Emacs.app/Contents/MacOS/Emacs "$@") &
fi

View File

@ -1,3 +0,0 @@
#!/bin/bash
/bin/bash -l '/home/tyrel/src/GoLand-2019.3/bin/goland.sh' %f

View File

@ -1,3 +0,0 @@
#!/bin/bash
/bin/bash -l '/home/tyrel/src/pycharm-2017.3.7/bin/pycharm.sh' %f

View File

@ -1,3 +0,0 @@
#!/bin/bash
/bin/bash -l '/home/tyrel/src/RubyMine-2019.3/bin/rubymine.sh' %f

View File

@ -1,2 +0,0 @@
#!/bin/bash
emacsclient --create-frame --alternate-editor=""

View File

@ -1,8 +0,0 @@
#!/bin/bash
sudo rm -rf /opt/nightlies/neovim
git clone https://github.com/neovim/neovim /opt/nightlies/neovim
cd /opt/nightlies/neovim
git checkout stable
make -j4
sudo make install

View File

@ -11,7 +11,7 @@ trap '{ rm -f "${FILENAMES_FILE}" ; }' EXIT
if [ $# -ne 0 ]; then
src=( "$@" )
else
IFS=$'\r\n' GLOBIGNORE='*' command eval 'src=($(ls))'
IFS=$'\r\n' GLOBIGNORE='*' command eval 'src=($(/bin/ls))'
fi
for ((i=0;i<${#src[@]};++i)); do