Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danhper/sublime-file-commands
Commands to work with files in Sublime Text
https://github.com/danhper/sublime-file-commands
Last synced: about 1 month ago
JSON representation
Commands to work with files in Sublime Text
- Host: GitHub
- URL: https://github.com/danhper/sublime-file-commands
- Owner: danhper
- Created: 2012-12-14T23:05:16.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-05-04T11:00:34.000Z (over 9 years ago)
- Last Synced: 2024-04-14T11:08:04.459Z (8 months ago)
- Language: Python
- Homepage: https://packagecontrol.io/packages/FileCommands
- Size: 195 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# sublime-file-commands
## Installation
Install the package as `FileCommands` through Package Control.
## Usage
This package has the following commands to work with file
more easily.* `open_or_create_file`
Opens or creates a file.
Will also create all directories in between when needed when creating file.* `save_quit`
Saves and closes the file.
Closes Sublime Text if it is the last file open and no directory or project is opened.* `try_quit`
Closes the file (or uses an Emacs like prompt to ask if not saved).
Closes Sublime Text if it is the last file open and no directory or project is opened.* `force_quit`
Closes the file even if not saved.
Closes Sublime Text if it is the last file open and no directory or project is opened.The package commands are available in the Command Palette
so that they can be accessed through vim bindings,
but any keybings works perfectly, for example:```json
[
{ "keys": ["super+w"], "command": "try_quit" },
{ "keys": ["super+o"], "command": "open_or_create_file" }
]
```Open file screenshot:
![screenshot-1423632337](https://cloud.githubusercontent.com/assets/1436271/6142441/e980dfe2-b1f9-11e4-828d-0fbe6f277199.png)