From b009b50e81b6c1d0d691505b5f5c0418f559bfc0 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 14 Mar 2019 23:19:58 +0100 Subject: Remove Atom config --- atom/packages/vim-mode/lib/motions/index.coffee | 14 -------------- 1 file changed, 14 deletions(-) delete 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 deleted file mode 100644 index 0fd420f..0000000 --- a/atom/packages/vim-mode/lib/motions/index.coffee +++ /dev/null @@ -1,14 +0,0 @@ -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