diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/sublime/README.md | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/sublime/README.md')
-rw-r--r-- | zsh/oh-my-zsh/plugins/sublime/README.md | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/zsh/oh-my-zsh/plugins/sublime/README.md b/zsh/oh-my-zsh/plugins/sublime/README.md deleted file mode 100644 index 2299924..0000000 --- a/zsh/oh-my-zsh/plugins/sublime/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# sublime - -Plugin for [Sublime Text](https://www.sublimetext.com/), a cross platform text and code editor, -available for Linux, macOS, and Windows. - -To use the plugin, add `sublime` to the plugins array of your zshrc file: - -```zsh -plugins=(... sublime) -``` - -Sublime Text has to be installed to use the plugin. - -## Usage - -The plugin defines several aliases, such as: - -- `st`: opens Sublime Text. If passed a file or directory, Sublime Text will open it. - -- `stt`: open Sublime Text on the current directory. - -- `sst`: if `sudo` is available, `sst` will open Sublime Text with root permissions, so that - you can modify any file or directory that you pass it. Useful to edit system files. - -There are also a few functions available: - -- `find_project` (or `stp` alias): if called, the function will search for a `.sublime-project` file - on the current directory or its parents, until it finds none. - - If there is no `.sublime-project` file but the current folder is in a Git repository, it will open - Sublime Text on the root directory of the repository. - - If there is no Git repository, it will then open Sublime Text on the current directory. - -- `create_project` (or `stn` alias): if called without an argument, create a stub `.sublime-project` - file in the current working directory, if one does not already exist. If passed a directory, create - a stub `.sublime-project` file in it. |