I broke up with neovim....vim is my best friend now
This commit is contained in:
21
dot_vim/plugged/vim-orgmode/ftplugin/orgmode/exceptions.py
Normal file
21
dot_vim/plugged/vim-orgmode/ftplugin/orgmode/exceptions.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
class PluginError(BaseException):
|
||||
def __init__(self, message):
|
||||
BaseException.__init__(self, message)
|
||||
|
||||
|
||||
class BufferNotFound(BaseException):
|
||||
def __init__(self, message):
|
||||
BaseException.__init__(self, message)
|
||||
|
||||
|
||||
class BufferNotInSync(BaseException):
|
||||
def __init__(self, message):
|
||||
BaseException.__init__(self, message)
|
||||
|
||||
|
||||
class HeadingDomError(BaseException):
|
||||
def __init__(self, message):
|
||||
BaseException.__init__(self, message)
|
||||
Reference in New Issue
Block a user