This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
forked from enyancc/vscode-ext-cursor-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix enyancc#3 - remove camelcase nav as its nativly supported by vscode - add config for the cursor place holder + a fallback - add src to vscodeignore - update readme
- Loading branch information
Showing
14 changed files
with
313 additions
and
4,650 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
node_modules | ||
node_modules | ||
.history | ||
yarn.lock | ||
package-lock.json | ||
*.vsix | ||
.DS_Store | ||
dist |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ test/** | |
.gitignore | ||
jsconfig.json | ||
vsc-extension-quickstart.md | ||
.history | ||
src | ||
webpack.config.js |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
# Change Log | ||
## [2.0.1] - 2017-07-20 | ||
### Fixed | ||
- Hotkeys for windows | ||
|
||
## [2.0.0] - 2017-07-19 | ||
### Added | ||
- subWord navigation mode for cursor | ||
### BREAKING CHANGE | ||
- New keybinds for the anchors (`ctrl+alt+(down, up), escape`) | ||
## 0.0.1 | ||
|
||
## [1.0] - 0000-00-00 | ||
- Initial release | ||
- Initial release |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,8 @@ | ||
# [vscode-ext-cursor-tools](https://github.com/naumovs/vscode-ext-cursor-tools) | ||
With this extension you can leave anchors in the document at cursor position and later on activate create multiple cursors out of all anchors in the current editor. | ||
based on https://github.com/naumovs/vscode-ext-cursor-tools + new features | ||
|
||
Also it has a feature of sub-word navigation. | ||
### New | ||
|
||
## Install | ||
In VSC press Ctrl+Shift+P (Cmd+Shift+P on Mac) then type ">ext install", hit enter, search "Cursor tools". | ||
|
||
Still confused? Click "Get Started" above. | ||
|
||
## Usage | ||
|
||
Keybinds: | ||
- ctrl+alt+down - toggle anchor at current place | ||
- ctrl+alt+up - create cursors at anchor positions | ||
- escape - Remove all anchors in current document | ||
|
||
## Contribution | ||
|
||
Feel free to contribute! | ||
Have ideas? Create issues at the github repo | ||
- add config to control the decoration styles | ||
- add support to multi cursors | ||
- change the default keybinding of decoration cancel | ||
- remove camelcase nav as its natively supported by vscode |
Oops, something went wrong.