From 24c7594d62d8d7fbbcdb64b11ce4adc5d8e6991a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Fri, 10 Jul 2015 11:12:25 -0500 Subject: Adds atom --- atom/packages/vim-mode-visual-block/package.json | 84 ++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 atom/packages/vim-mode-visual-block/package.json (limited to 'atom/packages/vim-mode-visual-block/package.json') diff --git a/atom/packages/vim-mode-visual-block/package.json b/atom/packages/vim-mode-visual-block/package.json new file mode 100644 index 0000000..d0fe933 --- /dev/null +++ b/atom/packages/vim-mode-visual-block/package.json @@ -0,0 +1,84 @@ +{ + "name": "vim-mode-visual-block", + "main": "./lib/main", + "version": "0.2.7", + "description": "Add visual-blockwise feature to vim-mode", + "repository": { + "type": "git", + "url": "https://github.com/t9md/atom-vim-mode-visual-block" + }, + "license": "MIT", + "engines": { + "atom": ">=0.174.0 <2.0.0" + }, + "consumedServices": { + "vim-mode": { + "versions": { + "^0.1.0": "consumeVimMode" + } + } + }, + "dependencies": { + "underscore-plus": "^1.6.6" + }, + "readme": "# vim-mode-visual-block\n\nAdd visual-block operation to [vim-mode](https://atom.io/packages/vim-mode).\n\n![gif](https://raw.githubusercontent.com/t9md/t9md/375d45f661b76cd8fd874dbcacf93602e7d75c99/img/vim-mode-visual-blockwise.gif)\n\n# What's this?\n\n**Temporarily** workaround, until vim-mode support visual block mode natively.\nI'm not intended to complete solution.\n\n# Keymap\n\nFrom version 0.2.5, starting to provide [default keymap](https://github.com/t9md/atom-vim-mode-visual-block/blob/master/keymaps/vim-mode-visual-block.cson). \n\nFor older version user\n* Remove explicit keymap from `keymap.cson` and use default keymap.\n\n# Limitation\n- Currently yank and paste for block range is not suppoted.\n- No support for non-contiguous multi selection.\n\n# Todo\n* [x] Precise state check when escape from visual-block.\n* [x] Support other insert-mode initiator like `a`, `i`, `C`.\n* [ ] Yank and paste support.\n* [ ] Concatenate undo transaction?.\n", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/t9md/atom-vim-mode-visual-block/issues" + }, + "homepage": "https://github.com/t9md/atom-vim-mode-visual-block", + "_id": "vim-mode-visual-block@0.2.7", + "_shasum": "13e1098ad2d14b834a6708c602295b05399147f4", + "_resolved": "file:../d-11562-87855-1gkfksx/package.tgz", + "_from": "../d-11562-87855-1gkfksx/package.tgz", + "_atomModuleCache": { + "version": 1, + "dependencies": [ + { + "name": "underscore-plus", + "version": "1.6.6", + "path": "node_modules/underscore-plus/lib/underscore-plus.js" + }, + { + "name": "underscore", + "version": "1.6.0", + "path": "node_modules/underscore-plus/node_modules/underscore/underscore.js" + } + ], + "extensions": { + ".coffee": [ + "lib/main.coffee" + ], + ".js": [ + "node_modules/underscore-plus/lib/underscore-plus.js", + "node_modules/underscore-plus/node_modules/underscore/underscore-min.js", + "node_modules/underscore-plus/node_modules/underscore/underscore.js" + ], + ".json": [ + "node_modules/underscore-plus/node_modules/underscore/package.json", + "node_modules/underscore-plus/package.json", + "package.json" + ] + }, + "folders": [ + { + "paths": [ + "lib", + "" + ], + "dependencies": { + "underscore-plus": "^1.6.6" + } + }, + { + "paths": [ + "node_modules/underscore-plus/lib", + "node_modules/underscore-plus" + ], + "dependencies": { + "underscore": "~1.6.0" + } + } + ] + } +} \ No newline at end of file -- cgit