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/lib/motions/index.coffee | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 atom/packages/vim-mode/lib/motions/index.coffee (limited to 'atom/packages/vim-mode/lib/motions/index.coffee') diff --git a/atom/packages/vim-mode/lib/motions/index.coffee b/atom/packages/vim-mode/lib/motions/index.coffee new file mode 100644 index 0000000..0fd420f --- /dev/null +++ b/atom/packages/vim-mode/lib/motions/index.coffee @@ -0,0 +1,14 @@ +Motions = require './general-motions' +{Search, SearchCurrentWord, BracketMatchingMotion, RepeatSearch} = require './search-motion' +MoveToMark = require './move-to-mark-motion' +{Find, Till} = require './find-motion' + +Motions.Search = Search +Motions.SearchCurrentWord = SearchCurrentWord +Motions.BracketMatchingMotion = BracketMatchingMotion +Motions.RepeatSearch = RepeatSearch +Motions.MoveToMark = MoveToMark +Motions.Find = Find +Motions.Till = Till + +module.exports = Motions -- cgit