Fixed typos, Implemented module interface
This commit is contained in:
parent
524559d5e0
commit
5649955821
@ -1,4 +1,4 @@
|
|||||||
from .module import module
|
from .module import VimModule
|
||||||
|
|
||||||
def getModule():
|
def get_module():
|
||||||
return vimModule()
|
return VimModule()
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
class vimModule:
|
from IModule import IModule
|
||||||
|
|
||||||
|
class VimModule(IModule):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
def getCommand(self):
|
def get_command(self):
|
||||||
|
|
||||||
plugins = [
|
plugins = [
|
||||||
("1. Colorschemes", "Plug 'https://github.com/rafi/awesome-vim-colorschemes.git'"),
|
("1. Colorschemes", "Plug 'https://github.com/rafi/awesome-vim-colorschemes.git'"),
|
||||||
|
Loading…
Reference in New Issue
Block a user