This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# takes an input of a path and opens a screen with nice edit in it with the title of the file name | |
IFS='/' read -ra FILEPATH <<< "$1" | |
FILENAME=${FILEPATH[-1]} | |
screen -t $FILENAME ne $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ext .* = $HOME/scripts/screen_open "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make navigating between regions easier | |
bind s split | |
bind j focus down | |
bind k focus up | |
# Make resizing regions easier | |
bind = resize = | |
bind + resize +1 | |
bind - resize -1 |