summaryrefslogtreecommitdiff
path: root/VimperatorrcBuilder.py
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2014-05-14 00:11:23 +0000
committerOlivier Gayot <duskcoder@gmail.com>2014-05-14 00:15:39 +0000
commitf286fe7b04d9e4a7cd75add7141db040ee0f6784 (patch)
tree9992b28216dd72fe8de1e97c71f275c43822246d /VimperatorrcBuilder.py
first version of the project
a module intended to be imported has been provided. it features: * a way to change the default search engine * a way to assign a key sequence to an url (like a custom bookmark) * a way to create shortcuts to access bang search engines !g, !tpb, ...
Diffstat (limited to 'VimperatorrcBuilder.py')
-rw-r--r--VimperatorrcBuilder.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/VimperatorrcBuilder.py b/VimperatorrcBuilder.py
new file mode 100644
index 0000000..8dd1658
--- /dev/null
+++ b/VimperatorrcBuilder.py
@@ -0,0 +1,63 @@
+# Copyright (C) 2014 Olivier Gayot
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import time
+
+class VimperatorrcBuilder():
+ bookmarks = {}
+ bookmark_pfx = '\\', '|'
+ bang_shortcuts_pfx = 's', 'S'
+ bang_shortcuts = {}
+ default_engine = 'duckduckgo'
+
+ def __init__(self):
+ pass
+
+ def register_bookmark(self, seq, url):
+ """ Add a new bookmark and bind it to a given key-sequence """
+
+ self.bookmarks[seq] = url
+
+ def register_bang_shortcut(self, seq, bang_shortcut):
+ """ Add a new bang shortcut and bind it to a key-sequence """
+
+ self.bang_shortcuts[seq] = bang_shortcut
+
+ def set_default_search_engine(self, engine):
+ """ Set the default search engine (i.e. when you type 'open foo') """
+
+ self.default_engine = engine
+
+ def get_output(self):
+ ''' Return a string containing the full output to redirect '''
+
+ output = '" Generated using VimperatorrcBuilder\n'
+ output += '" ' + time.ctime() + '\n'
+
+ output += '\n" bookmarks\n'
+ for key in self.bookmarks:
+ output += 'map \'' + self.bookmark_pfx[0] + key + '\' :o<Space>' + self.bookmarks[key] + '<Return>\n'
+ output += 'map \'' + self.bookmark_pfx[1] + key + '\' :t<Space>' + self.bookmarks[key] + '<Return>\n'
+
+ output += '\n" default search engine\n'
+ output += 'set defsearch=' + self.default_engine + '\n'
+
+ output += '\n" bang shortcuts\n'
+ for key in self.bang_shortcuts:
+ output += "noremap '" + self.bang_shortcuts_pfx[0] + key + "' o!" + self.bang_shortcuts[key] + ' \n'
+ output += "noremap '" + self.bang_shortcuts_pfx[1] + key + "' t!" + self.bang_shortcuts[key] + ' \n'
+ return output
+