SYMBOL INDEX (757 symbols across 49 files) FILE: examples/plugins/PluginExample.py class Example (line 10) | class Example(object): method __init__ (line 17) | def __init__(self): method action (line 32) | def action(cls): method register (line 40) | def register(self): FILE: ftplugin/orgmode/_vim.py function realign_tags (line 41) | def realign_tags(f): function repeat (line 59) | def repeat(f): function apply_count (line 74) | def apply_count(f): function echo (line 100) | def echo(message): function echom (line 109) | def echom(message): function echoe (line 119) | def echoe(message): function insert_at_cursor (line 128) | def insert_at_cursor(text, move=True, start_insertmode=False): function get_user_input (line 143) | def get_user_input(message): function get_bufnumber (line 156) | def get_bufnumber(bufname): function get_bufname (line 166) | def get_bufname(bufnr): function indent_orgmode (line 175) | def indent_orgmode(): function fold_text (line 201) | def fold_text(allow_dirty=False): function fold_orgmode (line 231) | def fold_orgmode(allow_dirty=False): function date_to_str (line 271) | def date_to_str(date): class OrgMode (line 278) | class OrgMode(object): method __init__ (line 281) | def __init__(self): method get_document (line 293) | def get_document(self, bufnr=0, allow_dirty=False): method plugins (line 312) | def plugins(self): method register_plugin (line 318) | def register_plugin(self, plugin): method register_keybindings (line 374) | def register_keybindings(self): method register_menu (line 386) | def register_menu(self): method unregister_menu (line 389) | def unregister_menu(self): method start (line 392) | def start(self): FILE: ftplugin/orgmode/exceptions.py class PluginError (line 4) | class PluginError(BaseException): method __init__ (line 5) | def __init__(self, message): class BufferNotFound (line 9) | class BufferNotFound(BaseException): method __init__ (line 10) | def __init__(self, message): class BufferNotInSync (line 14) | class BufferNotInSync(BaseException): method __init__ (line 15) | def __init__(self, message): class HeadingDomError (line 19) | class HeadingDomError(BaseException): method __init__ (line 20) | def __init__(self, message): FILE: ftplugin/orgmode/keybinding.py function _register (line 16) | def _register(f, name): function register_keybindings (line 26) | def register_keybindings(f): function register_commands (line 30) | def register_commands(f): class Command (line 34) | class Command(object): method __init__ (line 37) | def __init__(self, name, command, arguments=u'0', complete=None, overw... method __unicode__ (line 52) | def __unicode__(self): method __str__ (line 55) | def __str__(self): method name (line 59) | def name(self): method command (line 63) | def command(self): method arguments (line 67) | def arguments(self): method complete (line 71) | def complete(self): method overwrite_exisiting (line 75) | def overwrite_exisiting(self): method create (line 78) | def create(self): class Plug (line 90) | class Plug(object): method __init__ (line 93) | def __init__(self, name, command, mode=MODE_NORMAL): method __unicode__ (line 108) | def __unicode__(self): method __str__ (line 111) | def __str__(self): method create (line 114) | def create(self): method mode (line 123) | def mode(self): class Keybinding (line 127) | class Keybinding(object): method __init__ (line 130) | def __init__(self, key, action, mode=None, options=None, remap=True, b... method key (line 164) | def key(self): method action (line 168) | def action(self): method mode (line 172) | def mode(self): method options (line 176) | def options(self): method remap (line 180) | def remap(self): method buffer_only (line 184) | def buffer_only(self): method silent (line 188) | def silent(self): method create (line 191) | def create(self): FILE: ftplugin/orgmode/liborgmode/agenda.py function agenda_sorting_key (line 22) | def agenda_sorting_key(heading): class AgendaManager (line 42) | class AgendaManager(object): method __init__ (line 46) | def __init__(self): method get_todo (line 49) | def get_todo(self, documents): method get_next_week_and_active_todo (line 60) | def get_next_week_and_active_todo(self, documents): method get_timestamped_items (line 72) | def get_timestamped_items(self, documents): FILE: ftplugin/orgmode/liborgmode/agendafilter.py function filter_items (line 26) | def filter_items(headings, filters): function is_within_week (line 47) | def is_within_week(heading): function is_within_week_and_active_todo (line 60) | def is_within_week_and_active_todo(heading): function contains_active_todo (line 69) | def contains_active_todo(heading): function contains_active_date (line 85) | def contains_active_date(heading): FILE: ftplugin/orgmode/liborgmode/base.py function flatten_list (line 26) | def flatten_list(lst): class Direction (line 49) | class Direction(): class MultiPurposeList (line 59) | class MultiPurposeList(UserList): method __init__ (line 70) | def __init__(self, initlist=None, on_change=None): method _changed (line 74) | def _changed(self): method __setitem__ (line 79) | def __setitem__(self, i, item): method __delitem__ (line 87) | def __delitem__(self, i): method __getitem__ (line 95) | def __getitem__(self, i): method __setslice__ (line 104) | def __setslice__(self, i, j, other): method __delslice__ (line 107) | def __delslice__(self, i, j): method __getslice__ (line 110) | def __getslice__(self, i, j): method __iadd__ (line 113) | def __iadd__(self, other): method __imul__ (line 118) | def __imul__(self, n): method append (line 123) | def append(self, item): method insert (line 127) | def insert(self, i, item): method pop (line 131) | def pop(self, i=-1): method remove (line 136) | def remove(self, item): method reverse (line 139) | def reverse(self): method sort (line 143) | def sort(self, *args, **kwds): method extend (line 147) | def extend(self, other): function get_domobj_range (line 152) | def get_domobj_range(content=[], position=0, direction=Direction.FORWARD... FILE: ftplugin/orgmode/liborgmode/checkboxes.py class Checkbox (line 26) | class Checkbox(DomObj): method __init__ (line 33) | def __init__(self, level=1, type=u'-', title=u'', status=u'[ ]', body=... method __unicode__ (line 57) | def __unicode__(self): method __str__ (line 61) | def __str__(self): method __len__ (line 64) | def __len__(self): method copy (line 68) | def copy(self, including_children=True, parent=None): method parse_checkbox_from_data (line 97) | def parse_checkbox_from_data(cls, data, heading=None, orig_start=None): method update_subtasks (line 136) | def update_subtasks(self, total=0, on=0): method identify_checkbox (line 148) | def identify_checkbox(cls, line): method is_dirty (line 166) | def is_dirty(self): method is_dirty_checkbox (line 171) | def is_dirty_checkbox(self): method get_index_in_parent_list (line 175) | def get_index_in_parent_list(self): method get_parent_list (line 189) | def get_parent_list(self): method set_dirty (line 202) | def set_dirty(self): method set_dirty_checkbox (line 210) | def set_dirty_checkbox(self): method previous_checkbox (line 218) | def previous_checkbox(self): method next_checkbox (line 223) | def next_checkbox(self): method first_checkbox (line 228) | def first_checkbox(self): method start (line 234) | def start(self): method toggle (line 238) | def toggle(self): method all_siblings (line 246) | def all_siblings(self): method all_children (line 260) | def all_children(self): method all_children_status (line 273) | def all_children_status(self): method all_siblings_status (line 290) | def all_siblings_status(self): method are_children_all (line 307) | def are_children_all(self, status): method is_child_one (line 319) | def is_child_one(self, status): method are_siblings_all (line 328) | def are_siblings_all(self, status): method level (line 337) | def level(self, value): method title (line 344) | def title(self, value): method status (line 355) | def status(self): method status (line 360) | def status(self, value): method status (line 365) | def status(self): method type (line 369) | def type(self): method type (line 374) | def type(self, value): method type (line 378) | def type(self): class CheckboxList (line 382) | class CheckboxList(DomObjList): method __init__ (line 386) | def __init__(self, initlist=None, obj=None): method is_checkbox (line 397) | def is_checkbox(cls, obj): method _get_heading (line 400) | def _get_heading(self): FILE: ftplugin/orgmode/liborgmode/documents.py class Document (line 21) | class Document(object): method __init__ (line 30) | def __init__(self): method __unicode__ (line 56) | def __unicode__(self): method __str__ (line 61) | def __str__(self): method get_all_todo_states (line 64) | def get_all_todo_states(self): method get_todo_states (line 74) | def get_todo_states(self): method tabstop (line 88) | def tabstop(self): method tabstop (line 93) | def tabstop(self, value): method tag_column (line 97) | def tag_column(self): method tag_column (line 102) | def tag_column(self, value): method init_dom (line 105) | def init_dom(self, heading=Heading): method meta_information (line 173) | def meta_information(self): method meta_information (line 181) | def meta_information(self, value): method meta_information (line 193) | def meta_information(self): method headings (line 197) | def headings(self): method headings (line 202) | def headings(self, value): method headings (line 206) | def headings(self): method write (line 209) | def write(self): method set_dirty_meta_information (line 217) | def set_dirty_meta_information(self): method set_dirty_document (line 225) | def set_dirty_document(self): method is_dirty (line 236) | def is_dirty(self): method is_dirty_meta_information (line 255) | def is_dirty_meta_information(self): method is_dirty_document (line 260) | def is_dirty_document(self): method all_headings (line 264) | def all_headings(self): method find_heading (line 280) | def find_heading( FILE: ftplugin/orgmode/liborgmode/dom_obj.py class DomObj (line 46) | class DomObj(object): method __init__ (line 62) | def __init__(self, level=1, title=u'', body=None): method __unicode__ (line 90) | def __unicode__(self): method __str__ (line 93) | def __str__(self): method __len__ (line 96) | def __len__(self): method is_dirty (line 101) | def is_dirty(self): method is_dirty_body (line 106) | def is_dirty_body(self): method get_index_in_parent_list (line 110) | def get_index_in_parent_list(self): method get_parent_list (line 121) | def get_parent_list(self): method set_dirty (line 132) | def set_dirty(self): method set_dirty_body (line 138) | def set_dirty_body(self): method document (line 146) | def document(self): method parent (line 152) | def parent(self): method number_of_parents (line 157) | def number_of_parents(self): method previous_sibling (line 168) | def previous_sibling(self): method next_sibling (line 174) | def next_sibling(self): method previous_item (line 179) | def previous_item(self): method next_item (line 190) | def next_item(self): method start (line 205) | def start(self): method start_vim (line 217) | def start_vim(self): method end (line 222) | def end(self): method end_vim (line 228) | def end_vim(self): method end_of_last_child (line 233) | def end_of_last_child(self): method end_of_last_child_vim (line 243) | def end_of_last_child_vim(self): method children (line 247) | def children(self): method children (line 255) | def children(self, value): method children (line 262) | def children(self): method first_child (line 266) | def first_child(self): method last_child (line 272) | def last_child(self): method level (line 278) | def level(self): method level (line 286) | def level(self, value): method level (line 292) | def level(self): method title (line 296) | def title(self): method title (line 304) | def title(self, value): method title (line 314) | def title(self): method body (line 318) | def body(self): method body (line 323) | def body(self, value): method body (line 334) | def body(self): class DomObjList (line 340) | class DomObjList(MultiPurposeList): method __init__ (line 344) | def __init__(self, initlist=None, obj=None): method is_domobj (line 363) | def is_domobj(cls, obj): method _get_document (line 370) | def _get_document(self): method __setitem__ (line 375) | def __setitem__(self, i, item): method __delitem__ (line 402) | def __delitem__(self, i, taint=True): method __setslice__ (line 425) | def __setslice__(self, i, j, other): method __delslice__ (line 428) | def __delslice__(self, i, j, taint=True): method __iadd__ (line 431) | def __iadd__(self, other): method __imul__ (line 441) | def __imul__(self, n): method append (line 445) | def append(self, item, taint=True): method insert (line 455) | def insert(self, i, item, taint=True): method pop (line 462) | def pop(self, i=-1): method remove_slice (line 468) | def remove_slice(self, i, j, taint=True): method remove (line 471) | def remove(self, item, taint=True): method reverse (line 474) | def reverse(self): method sort (line 484) | def sort(self, *args, **kwds): method extend (line 494) | def extend(self, other): FILE: ftplugin/orgmode/liborgmode/headings.py class Heading (line 29) | class Heading(DomObj): method __init__ (line 32) | def __init__(self, level=1, title=u'', tags=None, todo=None, body=None... method __unicode__ (line 65) | def __unicode__(self): method __str__ (line 107) | def __str__(self): method __len__ (line 110) | def __len__(self): method __lt__ (line 114) | def __lt__(self, other): method __le__ (line 133) | def __le__(self, other): method __ge__ (line 152) | def __ge__(self, other): method __gt__ (line 171) | def __gt__(self, other): method copy (line 190) | def copy(self, including_children=True, parent=None): method all_checkboxes (line 218) | def all_checkboxes(self): method all_toplevel_checkboxes (line 234) | def all_toplevel_checkboxes(self): method find_checkbox (line 245) | def find_checkbox(self, position=0, direction=Direction.FORWARD, method init_checkboxes (line 277) | def init_checkboxes(self, checkbox=Checkbox): method current_checkbox (line 336) | def current_checkbox(self, position=None): method first_checkbox (line 388) | def first_checkbox(self): method parse_heading_from_data (line 394) | def parse_heading_from_data( method update_subtasks (line 465) | def update_subtasks(self, total=0, on=0): method identify_heading (line 481) | def identify_heading(line): method is_dirty (line 501) | def is_dirty(self): method is_dirty_heading (line 506) | def is_dirty_heading(self): method get_index_in_parent_list (line 510) | def get_index_in_parent_list(self): method get_parent_list (line 524) | def get_parent_list(self): method set_dirty (line 537) | def set_dirty(self): method set_dirty_heading (line 545) | def set_dirty_heading(self): method previous_heading (line 553) | def previous_heading(self): method next_heading (line 558) | def next_heading(self): method start (line 563) | def start(self): method level (line 573) | def level(self, value): method todo (line 579) | def todo(self): method todo (line 585) | def todo(self, value): method todo (line 601) | def todo(self): method active_date (line 605) | def active_date(self): method active_date (line 615) | def active_date(self, value): method active_date (line 619) | def active_date(self): method title (line 623) | def title(self, value): method tags (line 635) | def tags(self): method tags (line 640) | def tags(self, value): method tags (line 661) | def tags(self): method checkboxes (line 665) | def checkboxes(self): method checkboxes (line 670) | def checkboxes(self, value): method checkboxes (line 674) | def checkboxes(self): class HeadingList (line 678) | class HeadingList(DomObjList): method __init__ (line 687) | def __init__(self, initlist=None, obj=None): method is_heading (line 698) | def is_heading(cls, obj): method _get_document (line 702) | def _get_document(self): method _add_to_deleted_headings (line 707) | def _add_to_deleted_headings(self, item): method _associate_heading (line 724) | def _associate_heading( method __setitem__ (line 791) | def __setitem__(self, i, item): method __delitem__ (line 820) | def __delitem__(self, i, taint=True): method __iadd__ (line 845) | def __iadd__(self, other): method append (line 855) | def append(self, item, taint=True): method insert (line 865) | def insert(self, i, item, taint=True): method pop (line 872) | def pop(self, i=-1): method extend (line 878) | def extend(self, other): FILE: ftplugin/orgmode/liborgmode/orgdate.py function get_orgdate (line 58) | def get_orgdate(data): function _findfirst (line 75) | def _findfirst(f, seq): function _text2orgdate (line 86) | def _text2orgdate(string): class OrgDate (line 165) | class OrgDate(datetime.date): method __init__ (line 174) | def __init__(self, active, year, month, day): method __new__ (line 178) | def __new__(cls, active, year, month, day): method __unicode__ (line 181) | def __unicode__(self): method __str__ (line 190) | def __str__(self): method timestr (line 193) | def timestr(self): method date (line 196) | def date(self): method strftime (line 199) | def strftime(self, fmt): class OrgDateTime (line 203) | class OrgDateTime(datetime.datetime): method __init__ (line 213) | def __init__(self, active, year, month, day, hour, mins): method __new__ (line 216) | def __new__(cls, active, year, month, day, hour, minute): method __unicode__ (line 219) | def __unicode__(self): method __str__ (line 228) | def __str__(self): method timestr (line 231) | def timestr(self): method date (line 234) | def date(self): method strftime (line 237) | def strftime(self, fmt): class OrgTimeRange (line 241) | class OrgTimeRange(object): method __init__ (line 252) | def __init__(self, active, start, end): method __unicode__ (line 262) | def __unicode__(self): method __str__ (line 305) | def __str__(self): method date (line 308) | def date(self): FILE: ftplugin/orgmode/menu.py function register_menu (line 10) | def register_menu(f): function add_cmd_mapping_menu (line 28) | def add_cmd_mapping_menu(plugin, name, function, key_mapping, menu_desrc): class Submenu (line 47) | class Submenu(object): method __init__ (line 50) | def __init__(self, name, parent=None): method __add__ (line 56) | def __add__(self, entry): method __sub__ (line 62) | def __sub__(self, entry): method children (line 68) | def children(self): method get_menu (line 71) | def get_menu(self): method create (line 77) | def create(self): method __str__ (line 81) | def __str__(self): class Separator (line 87) | class Separator(object): method __init__ (line 90) | def __init__(self, parent=None): method __unicode__ (line 94) | def __unicode__(self): method __str__ (line 97) | def __str__(self): method create (line 100) | def create(self): class ActionEntry (line 105) | class ActionEntry(object): method __init__ (line 108) | def __init__(self, lname, action, rname=None, mode=MODE_NORMAL, parent... method __str__ (line 127) | def __str__(self): method lname (line 131) | def lname(self): method action (line 135) | def action(self): method rname (line 141) | def rname(self): method mode (line 147) | def mode(self): method create (line 152) | def create(self): FILE: ftplugin/orgmode/plugins/Agenda.py class Agenda (line 18) | class Agenda(object): method __init__ (line 26) | def __init__(self): method _switch_to (line 41) | def _switch_to(cls, bufname, vim_commands=None): method _get_agendadocuments (line 68) | def _get_agendadocuments(self): method _load_agendafiles (line 86) | def _load_agendafiles(self, agenda_files): method opendoc (line 108) | def opendoc(cls, split=False, switch=False): method list_next_week (line 142) | def list_next_week(cls): method list_next_week_for_buffer (line 149) | def list_next_week_for_buffer(cls): method list_next_week_for (line 156) | def list_next_week_for(cls, agenda_documents): method list_all_todos (line 221) | def list_all_todos(cls, current_buffer=False): method list_timeline (line 255) | def list_timeline(cls): method register (line 279) | def register(self): FILE: ftplugin/orgmode/plugins/Date.py class Date (line 18) | class Date(object): method __init__ (line 34) | def __init__(self): method _modify_time (line 59) | def _modify_time(cls, startdate, modifier): method insert_timestamp (line 227) | def insert_timestamp(cls, active=True): method insert_timestamp_with_calendar (line 259) | def insert_timestamp_with_calendar(cls, active=True): method register (line 279) | def register(self): FILE: ftplugin/orgmode/plugins/EditCheckbox.py class EditCheckbox (line 15) | class EditCheckbox(object): method __init__ (line 20) | def __init__(self): method new_checkbox (line 35) | def new_checkbox(cls, below=None, plain=None): method toggle (line 143) | def toggle(cls, checkbox=None): method _update_subtasks (line 186) | def _update_subtasks(cls): method _update_checkboxes_subtasks (line 201) | def _update_checkboxes_subtasks(cls, checkbox): method update_checkboxes_status (line 210) | def update_checkboxes_status(cls): method _update_checkboxes_status (line 222) | def _update_checkboxes_status(cls, checkbox=None): method register (line 277) | def register(self): FILE: ftplugin/orgmode/plugins/EditStructure.py class EditStructure (line 17) | class EditStructure(object): method __init__ (line 20) | def __init__(self): method new_heading (line 32) | def new_heading(cls, below=None, insert_mode=False, end_of_last_child=... method _append_heading (line 113) | def _append_heading(cls, heading, parent): method _change_heading_level (line 123) | def _change_heading_level(cls, level, including_children=True, on_head... method demote_heading (line 263) | def demote_heading(cls, including_children=True, on_heading=False, ins... method promote_heading (line 273) | def promote_heading(cls, including_children=True, on_heading=False, in... method _move_heading (line 280) | def _move_heading(cls, direction=Direction.FORWARD, including_children... method move_heading_upward (line 335) | def move_heading_upward(cls, including_children=True): method move_heading_downward (line 344) | def move_heading_downward(cls, including_children=True): method register (line 350) | def register(self): FILE: ftplugin/orgmode/plugins/Export.py class Export (line 15) | class Export(object): method __init__ (line 27) | def __init__(self): method _get_init_script (line 42) | def _get_init_script(cls): method _export (line 52) | def _export(cls, format_): method topdf (line 88) | def topdf(cls): method tobeamer (line 97) | def tobeamer(cls): method tohtml (line 106) | def tohtml(cls): method tolatex (line 115) | def tolatex(cls): method tomarkdown (line 124) | def tomarkdown(cls): method register (line 132) | def register(self): FILE: ftplugin/orgmode/plugins/Hyperlinks.py class Hyperlinks (line 14) | class Hyperlinks(object): method __init__ (line 17) | def __init__(self): method _get_link (line 35) | def _get_link(cls, cursor=None): method follow (line 73) | def follow(cls, action=u'openLink', visual=u''): method insert (line 105) | def insert(cls, uri=None, description=None): method register (line 160) | def register(self): FILE: ftplugin/orgmode/plugins/LoggingWork.py class LoggingWork (line 11) | class LoggingWork(object): method __init__ (line 14) | def __init__(self): method action (line 29) | def action(cls): method register (line 36) | def register(self): FILE: ftplugin/orgmode/plugins/Misc.py class Misc (line 12) | class Misc(object): method __init__ (line 15) | def __init__(self): method jump_to_first_character (line 27) | def jump_to_first_character(cls): method edit_at_first_character (line 36) | def edit_at_first_character(cls): method i_heading (line 48) | def i_heading(cls, mode=u'visual', selection=u'inner', skip_children=F... method a_heading (line 112) | def a_heading(cls, selection=u'inner', skip_children=False): method register (line 144) | def register(self): FILE: ftplugin/orgmode/plugins/Navigator.py class Navigator (line 13) | class Navigator(object): method __init__ (line 16) | def __init__(self): method parent (line 23) | def parent(cls, mode): method parent_next_sibling (line 54) | def parent_next_sibling(cls, mode): method _change_visual_selection (line 86) | def _change_visual_selection(cls, current_heading, heading, direction=... method _focus_heading (line 181) | def _focus_heading(cls, mode, direction=Direction.FORWARD, skip_childr... method previous (line 266) | def previous(cls, mode, skip_children=False): method next (line 274) | def next(cls, mode, skip_children=False): method register (line 280) | def register(self): FILE: ftplugin/orgmode/plugins/ShowHide.py class ShowHide (line 15) | class ShowHide(object): method __init__ (line 18) | def __init__(self): method _fold_depth (line 30) | def _fold_depth(cls, h): method toggle_folding (line 53) | def toggle_folding(cls, reverse=False): method global_toggle_folding (line 125) | def global_toggle_folding(cls, reverse=False): method register (line 157) | def register(self): FILE: ftplugin/orgmode/plugins/TagsProperties.py class TagsProperties (line 13) | class TagsProperties(object): method __init__ (line 16) | def __init__(self): method complete_tags (line 31) | def complete_tags(cls): method set_tags (line 76) | def set_tags(cls): method find_tags (line 103) | def find_tags(cls): method realign_tags (line 132) | def realign_tags(cls): method realign_all_tags (line 146) | def realign_all_tags(cls): method register (line 156) | def register(self): FILE: ftplugin/orgmode/plugins/Todo.py function split_access_key (line 23) | def split_access_key(t, sub=None): class Todo (line 52) | class Todo(object): method __init__ (line 70) | def __init__(self): method _process_all_states (line 82) | def _process_all_states(cls, all_states): method _get_next_state (line 105) | def _get_next_state( method toggle_todo_state (line 152) | def toggle_todo_state( method set_todo_state (line 211) | def set_todo_state(cls, state): method init_org_todo (line 251) | def init_org_todo(cls): method register (line 303) | def register(self): FILE: ftplugin/orgmode/py3compat/encode_compatibility.py function u_encode (line 3) | def u_encode(string): function u_decode (line 5) | def u_decode(string): function u_encode (line 8) | def u_encode(string): function u_decode (line 10) | def u_decode(string): FILE: ftplugin/orgmode/py3compat/py_py3_string.py class NoneAsEmptyFormatter (line 11) | class NoneAsEmptyFormatter(Formatter): method get_value (line 12) | def get_value(self, key, args, kwargs): FILE: ftplugin/orgmode/settings.py function get (line 22) | def get(setting, default=None, scope=SCOPE_ALL): function set (line 52) | def set(setting, value, scope=SCOPE_GLOBAL, overwrite=False): function unset (line 85) | def unset(setting, scope=SCOPE_GLOBAL): FILE: ftplugin/orgmode/vimbuffer.py class VimBuffer (line 37) | class VimBuffer(Document): method __init__ (line 38) | def __init__(self, bufnr=0): method tabstop (line 63) | def tabstop(self): method tag_column (line 67) | def tag_column(self): method is_insync (line 71) | def is_insync(self): method bufnr (line 77) | def bufnr(self): method changedtick (line 84) | def changedtick(self): method changedtick (line 89) | def changedtick(self, value): method get_todo_states (line 92) | def get_todo_states(self, strip_access_key=True): method update_changedtick (line 148) | def update_changedtick(self): method write (line 159) | def write(self): method write_heading (line 216) | def write_heading(self, heading, including_children=True): method write_checkbox (line 263) | def write_checkbox(self, checkbox, including_children=True): method write_checkboxes (line 288) | def write_checkboxes(self, checkboxes): method previous_heading (line 291) | def previous_heading(self, position=None): method current_heading (line 299) | def current_heading(self, position=None): method next_heading (line 350) | def next_heading(self, position=None): method find_current_heading (line 358) | def find_current_heading(self, position=None, heading=Heading): class VimBufferContent (line 377) | class VimBufferContent(MultiPurposeList): method __init__ (line 386) | def __init__(self, vimbuffer, on_change=None): method __contains__ (line 393) | def __contains__(self, item): method __getitem__ (line 399) | def __getitem__(self, i): method __setitem__ (line 409) | def __setitem__(self, i, item): method __add__ (line 436) | def __add__(self, other): method __radd__ (line 446) | def __radd__(self, other): method __iadd__ (line 456) | def __iadd__(self, other): method append (line 469) | def append(self, item): method insert (line 475) | def insert(self, i, item): method index (line 481) | def index(self, item, *args): method pop (line 487) | def pop(self, i=-1): method extend (line 490) | def extend(self, other): FILE: tests/test_libagendafilter.py class AgendaFilterTestCase (line 26) | class AgendaFilterTestCase(unittest.TestCase): method setUp (line 29) | def setUp(self): method test_contains_active_todo (line 51) | def test_contains_active_todo(self): method test_contains_active_date (line 61) | def test_contains_active_date(self): method test_is_within_week_with_orgdate (line 69) | def test_is_within_week_with_orgdate(self): method test_is_within_week_with_orgdatetime (line 88) | def test_is_within_week_with_orgdatetime(self): method test_filter_items (line 107) | def test_filter_items(self): method test_filter_items_with_some_todos_and_dates (line 140) | def test_filter_items_with_some_todos_and_dates(self): function suite (line 167) | def suite(): FILE: tests/test_libbase.py class LibBaseTestCase (line 11) | class LibBaseTestCase(unittest.TestCase): method setUp (line 13) | def setUp(self): method test_base_functions (line 22) | def test_base_functions(self): function suite (line 30) | def suite(): FILE: tests/test_libcheckbox.py function set_vim_buffer (line 13) | def set_vim_buffer(buf=None, cursor=(2, 0), bufnr=0): class CheckboxTestCase (line 21) | class CheckboxTestCase(unittest.TestCase): method setUp (line 23) | def setUp(self): method test_init (line 63) | def test_init(self): method test_basic (line 70) | def test_basic(self): method test_identify (line 92) | def test_identify(self): method test_toggle (line 99) | def test_toggle(self): method test_subtasks (line 116) | def test_subtasks(self): function suite (line 129) | def suite(): FILE: tests/test_libheading.py class TestHeadingRecognizeDatesInHeading (line 12) | class TestHeadingRecognizeDatesInHeading(unittest.TestCase): method setUp (line 14) | def setUp(self): method test_heading_parsing_no_date (line 33) | def test_heading_parsing_no_date(self): method test_heading_parsing_with_date (line 53) | def test_heading_parsing_with_date(self): method test_heading_parsing_with_date_and_body (line 69) | def test_heading_parsing_with_date_and_body(self): method test_less_than_for_dates_in_heading (line 95) | def test_less_than_for_dates_in_heading(self): method test_less_equal_for_dates_in_heading (line 106) | def test_less_equal_for_dates_in_heading(self): method test_greate_than_for_dates_in_heading (line 113) | def test_greate_than_for_dates_in_heading(self): method test_greate_equal_for_dates_in_heading (line 120) | def test_greate_equal_for_dates_in_heading(self): method test_sorting_of_headings (line 126) | def test_sorting_of_headings(self): function suite (line 152) | def suite(): FILE: tests/test_liborgdate.py class OrgDateTestCase (line 13) | class OrgDateTestCase(unittest.TestCase): method setUp (line 18) | def setUp(self): method test_OrgDate_ctor_active (line 26) | def test_OrgDate_ctor_active(self): method test_OrgDate_ctor_inactive (line 33) | def test_OrgDate_ctor_inactive(self): method test_OrdDate_str_active (line 40) | def test_OrdDate_str_active(self): method test_OrdDate_str_inactive (line 45) | def test_OrdDate_str_inactive(self): function suite (line 50) | def suite(): FILE: tests/test_liborgdate_parsing.py class OrgDateParsingTestCase (line 15) | class OrgDateParsingTestCase(unittest.TestCase): method setUp (line 22) | def setUp(self): method test_get_orgdate_parsing_active (line 26) | def test_get_orgdate_parsing_active(self): method test_get_orgdatetime_parsing_active (line 43) | def test_get_orgdatetime_parsing_active(self): method test_get_orgtimerange_parsing_active (line 61) | def test_get_orgtimerange_parsing_active(self): method test_get_orgdate_parsing_inactive (line 86) | def test_get_orgdate_parsing_inactive(self): method test_get_orgdatetime_parsing_passive (line 102) | def test_get_orgdatetime_parsing_passive(self): method test_get_orgdate_parsing_with_list_of_texts (line 119) | def test_get_orgdate_parsing_with_list_of_texts(self): method test_get_orgdate_parsing_with_invalid_input (line 171) | def test_get_orgdate_parsing_with_invalid_input(self): method test_get_orgdate_parsing_with_invalid_dates (line 185) | def test_get_orgdate_parsing_with_invalid_dates(self): method test_get_orgdate_parsing_with_utf8 (line 199) | def test_get_orgdate_parsing_with_utf8(self): method test_get_orgdatetime_parsing_with_utf8 (line 220) | def test_get_orgdatetime_parsing_with_utf8(self): function suite (line 245) | def suite(): FILE: tests/test_liborgdate_utf8.py class OrgDateUtf8TestCase (line 16) | class OrgDateUtf8TestCase(unittest.TestCase): method setlocale (line 24) | def setlocale(self, name): method setUp (line 32) | def setUp(self): method test_OrdDate_str_unicode_active (line 39) | def test_OrdDate_str_unicode_active(self): method test_OrdDate_str_unicode_inactive (line 44) | def test_OrdDate_str_unicode_inactive(self): function suite (line 49) | def suite(): FILE: tests/test_liborgdatetime.py class OrgDateTimeTestCase (line 12) | class OrgDateTimeTestCase(unittest.TestCase): method test_OrgDateTime_ctor_active (line 17) | def test_OrgDateTime_ctor_active(self): method test_OrgDateTime_ctor_inactive (line 25) | def test_OrgDateTime_ctor_inactive(self): method test_OrdDateTime_str_active (line 33) | def test_OrdDateTime_str_active(self): method test_OrdDateTime_str_inactive (line 39) | def test_OrdDateTime_str_inactive(self): function suite (line 46) | def suite(): FILE: tests/test_liborgtimerange.py class OrgTimeRangeTestCase (line 12) | class OrgTimeRangeTestCase(unittest.TestCase): method setUp (line 14) | def setUp(self): method test_OrgTimeRange_ctor_active (line 22) | def test_OrgTimeRange_ctor_active(self): method test_OrgTimeRange_ctor_inactive (line 32) | def test_OrgTimeRange_ctor_inactive(self): method test_OrdDate_str_active (line 42) | def test_OrdDate_str_active(self): method test_OrdDate_str_inactive (line 62) | def test_OrdDate_str_inactive(self): function suite (line 82) | def suite(): FILE: tests/test_plugin_date.py class DateTestCase (line 15) | class DateTestCase(unittest.TestCase): method setUp (line 22) | def setUp(self): method test_modify_time_with_None (line 25) | def test_modify_time_with_None(self): method test_modify_time_with_dot (line 30) | def test_modify_time_with_dot(self): method test_modify_time_with_given_relative_days (line 35) | def test_modify_time_with_given_relative_days(self): method test_modify_time_with_given_relative_days_without_d (line 48) | def test_modify_time_with_given_relative_days_without_d(self): method test_modify_time_with_given_relative_weeks (line 61) | def test_modify_time_with_given_relative_weeks(self): method test_modify_time_with_given_relative_months (line 74) | def test_modify_time_with_given_relative_months(self): method test_modify_time_with_given_relative_years (line 82) | def test_modify_time_with_given_relative_years(self): method test_modify_time_with_given_weekday (line 91) | def test_modify_time_with_given_weekday(self): method test_modify_time_with_month_and_day (line 109) | def test_modify_time_with_month_and_day(self): method test_modify_time_with_time (line 122) | def test_modify_time_with_time(self): method test_modify_time_with_full_dates (line 133) | def test_modify_time_with_full_dates(self): method test_modify_time_with_only_days (line 152) | def test_modify_time_with_only_days(self): method test_modify_time_with_day_and_time (line 161) | def test_modify_time_with_day_and_time(self): function suite (line 171) | def suite(): FILE: tests/test_plugin_edit_checkbox.py function set_vim_buffer (line 17) | def set_vim_buffer(buf=None, cursor=(2, 0), bufnr=0): class EditCheckboxTestCase (line 26) | class EditCheckboxTestCase(unittest.TestCase): method setUp (line 27) | def setUp(self): method test_toggle (line 95) | def test_toggle(self): method test_no_status_checkbox (line 127) | def test_no_status_checkbox(self): method test_number_list (line 142) | def test_number_list(self): method test_new_checkbox (line 150) | def test_new_checkbox(self): method test_item_decrement (line 158) | def test_item_decrement(self): method test_item_decrementA (line 186) | def test_item_decrementA(self): method test_item_increment (line 196) | def test_item_increment(self): method test_item_incrementz (line 212) | def test_item_incrementz(self): function suite (line 238) | def suite(): FILE: tests/test_plugin_edit_structure.py class EditStructureTestCase (line 14) | class EditStructureTestCase(unittest.TestCase): method setUp (line 15) | def setUp(self): method test_new_heading_below_normal_behavior (line 64) | def test_new_heading_below_normal_behavior(self): method test_new_heading_above_normal_behavior (line 70) | def test_new_heading_above_normal_behavior(self): method test_new_heading_below (line 76) | def test_new_heading_below(self): method test_new_heading_below_insert_mode (line 89) | def test_new_heading_below_insert_mode(self): method test_new_heading_below_split_text_at_the_end (line 101) | def test_new_heading_below_split_text_at_the_end(self): method test_new_heading_below_split_text_at_the_end_insert_parts (line 114) | def test_new_heading_below_split_text_at_the_end_insert_parts(self): method test_new_heading_below_in_the_middle (line 126) | def test_new_heading_below_in_the_middle(self): method test_new_heading_below_in_the_middle2 (line 134) | def test_new_heading_below_in_the_middle2(self): method test_new_heading_below_in_the_middle3 (line 142) | def test_new_heading_below_in_the_middle3(self): method test_new_heading_below_at_the_end (line 150) | def test_new_heading_below_at_the_end(self): method test_new_heading_above (line 158) | def test_new_heading_above(self): method test_new_heading_above_in_the_middle (line 166) | def test_new_heading_above_in_the_middle(self): method test_new_heading_above_in_the_middle2 (line 174) | def test_new_heading_above_in_the_middle2(self): method test_new_heading_above_in_the_middle3 (line 182) | def test_new_heading_above_in_the_middle3(self): method test_new_heading_above_at_the_end (line 190) | def test_new_heading_above_at_the_end(self): method test_new_heading_below_split_heading_title (line 198) | def test_new_heading_below_split_heading_title(self): method test_new_heading_below_split_heading_title_with_todo (line 226) | def test_new_heading_below_split_heading_title_with_todo(self): method test_demote_heading (line 254) | def test_demote_heading(self): method test_demote_newly_created_level_one_heading (line 266) | def test_demote_newly_created_level_one_heading(self): method test_demote_newly_created_level_two_heading (line 286) | def test_demote_newly_created_level_two_heading(self): method test_demote_last_heading (line 308) | def test_demote_last_heading(self): method test_promote_heading (line 320) | def test_promote_heading(self): method test_promote_level_one_heading (line 332) | def test_promote_level_one_heading(self): method test_demote_parent_heading (line 339) | def test_demote_parent_heading(self): method test_promote_parent_heading (line 350) | def test_promote_parent_heading(self): method test_demote_parent_heading_count (line 362) | def test_demote_parent_heading_count(self): method test_promote_parent_heading (line 375) | def test_promote_parent_heading(self): function suite (line 386) | def suite(): FILE: tests/test_plugin_mappings.py class MappingTestCase (line 21) | class MappingTestCase(unittest.TestCase): method test_non_overlapping_plug_mappings (line 23) | def test_non_overlapping_plug_mappings(self): method setUp (line 44) | def setUp(self): function suite (line 65) | def suite(): FILE: tests/test_plugin_misc.py class MiscTestCase (line 20) | class MiscTestCase(unittest.TestCase): method setUp (line 21) | def setUp(self): method test_indent_noheading (line 60) | def test_indent_noheading(self): method test_indent_heading (line 67) | def test_indent_heading(self): method test_indent_heading_middle (line 74) | def test_indent_heading_middle(self): method test_indent_heading_middle2 (line 82) | def test_indent_heading_middle2(self): method test_indent_heading_end (line 90) | def test_indent_heading_end(self): method test_fold_heading_start (line 98) | def test_fold_heading_start(self): method test_fold_heading_middle (line 106) | def test_fold_heading_middle(self): method test_fold_heading_end (line 114) | def test_fold_heading_end(self): method test_fold_heading_end_of_last_child (line 122) | def test_fold_heading_end_of_last_child(self): method test_fold_heading_end_of_last_child_next_heading (line 131) | def test_fold_heading_end_of_last_child_next_heading(self): method test_fold_middle_subheading (line 139) | def test_fold_middle_subheading(self): method test_fold_middle_subheading2 (line 147) | def test_fold_middle_subheading2(self): method test_fold_middle_subheading3 (line 155) | def test_fold_middle_subheading3(self): function suite (line 163) | def suite(): FILE: tests/test_plugin_navigator.py function set_visual_selection (line 16) | def set_visual_selection(visualmode, line_start, line_end, col_start=1, class NavigatorTestCase (line 36) | class NavigatorTestCase(unittest.TestCase): method setUp (line 37) | def setUp(self): method test_movement (line 80) | def test_movement(self): method test_forward_movement (line 88) | def test_forward_movement(self): method test_backward_movement (line 135) | def test_backward_movement(self): method test_parent_movement (line 175) | def test_parent_movement(self): method test_next_parent_movement (line 223) | def test_next_parent_movement(self): method test_forward_movement_visual (line 229) | def test_forward_movement_visual(self): method test_forward_movement_visual_to_the_end_of_the_file (line 371) | def test_forward_movement_visual_to_the_end_of_the_file(self): method test_backward_movement_visual (line 400) | def test_backward_movement_visual(self): method test_parent_movement_visual (line 556) | def test_parent_movement_visual(self): function suite (line 632) | def suite(): FILE: tests/test_plugin_show_hide.py class ShowHideTestCase (line 14) | class ShowHideTestCase(unittest.TestCase): method setUp (line 15) | def setUp(self): method test_no_heading_toggle_folding (line 56) | def test_no_heading_toggle_folding(self): method test_toggle_folding_first_heading_with_no_children (line 62) | def test_toggle_folding_first_heading_with_no_children(self): method test_toggle_folding_close_one (line 83) | def test_toggle_folding_close_one(self): method test_toggle_folding_open_one (line 94) | def test_toggle_folding_open_one(self): method test_toggle_folding_close_multiple_all_open (line 104) | def test_toggle_folding_close_multiple_all_open(self): method test_toggle_folding_open_multiple_all_closed (line 118) | def test_toggle_folding_open_multiple_all_closed(self): method test_toggle_folding_open_multiple_first_level_open (line 128) | def test_toggle_folding_open_multiple_first_level_open(self): method test_toggle_folding_open_multiple_second_level_half_open (line 143) | def test_toggle_folding_open_multiple_second_level_half_open(self): method test_toggle_folding_open_multiple_other_second_level_half_open (line 160) | def test_toggle_folding_open_multiple_other_second_level_half_open(self): method test_toggle_folding_open_multiple_third_level_half_open (line 177) | def test_toggle_folding_open_multiple_third_level_half_open(self): method test_toggle_folding_open_multiple_other_third_level_half_open (line 194) | def test_toggle_folding_open_multiple_other_third_level_half_open(self): method test_toggle_folding_open_multiple_other_third_level_half_open_second_level_half_closed (line 211) | def test_toggle_folding_open_multiple_other_third_level_half_open_seco... method test_no_heading_toggle_folding_reverse (line 228) | def test_no_heading_toggle_folding_reverse(self): method test_toggle_folding_first_heading_with_no_children_reverse (line 234) | def test_toggle_folding_first_heading_with_no_children_reverse(self): method test_toggle_folding_close_one_reverse (line 255) | def test_toggle_folding_close_one_reverse(self): method test_toggle_folding_open_one_reverse (line 265) | def test_toggle_folding_open_one_reverse(self): method test_toggle_folding_close_multiple_all_open_reverse (line 275) | def test_toggle_folding_close_multiple_all_open_reverse(self): method test_toggle_folding_open_multiple_all_closed_reverse (line 290) | def test_toggle_folding_open_multiple_all_closed_reverse(self): method test_toggle_folding_open_multiple_first_level_open_reverse (line 300) | def test_toggle_folding_open_multiple_first_level_open_reverse(self): method test_toggle_folding_open_multiple_second_level_half_open_reverse (line 314) | def test_toggle_folding_open_multiple_second_level_half_open_reverse(s... method test_toggle_folding_open_multiple_other_second_level_half_open_reverse (line 328) | def test_toggle_folding_open_multiple_other_second_level_half_open_rev... method test_toggle_folding_open_multiple_third_level_half_open_reverse (line 342) | def test_toggle_folding_open_multiple_third_level_half_open_reverse(se... method test_toggle_folding_open_multiple_other_third_level_half_open_reverse (line 356) | def test_toggle_folding_open_multiple_other_third_level_half_open_reve... method test_toggle_folding_open_multiple_other_third_level_half_open_second_level_half_closed_reverse (line 370) | def test_toggle_folding_open_multiple_other_third_level_half_open_seco... function suite (line 384) | def suite(): FILE: tests/test_plugin_tags_properties.py class TagsPropertiesTestCase (line 20) | class TagsPropertiesTestCase(unittest.TestCase): method setUp (line 21) | def setUp(self): method test_new_property (line 65) | def test_new_property(self): method test_set_tags (line 72) | def test_set_tags(self): method test_parse_tags_no_colons_single_tag (line 84) | def test_parse_tags_no_colons_single_tag(self): method test_parse_tags_no_colons_multiple_tags (line 90) | def test_parse_tags_no_colons_multiple_tags(self): method test_parse_tags_single_colon_left_single_tag (line 96) | def test_parse_tags_single_colon_left_single_tag(self): method test_parse_tags_single_colon_left_multiple_tags (line 102) | def test_parse_tags_single_colon_left_multiple_tags(self): method test_parse_tags_single_colon_right_single_tag (line 108) | def test_parse_tags_single_colon_right_single_tag(self): method test_parse_tags_single_colon_right_multiple_tags (line 114) | def test_parse_tags_single_colon_right_multiple_tags(self): method test_filter_empty_tags (line 120) | def test_filter_empty_tags(self): method test_delete_tags (line 126) | def test_delete_tags(self): method test_realign_tags_noop (line 143) | def test_realign_tags_noop(self): method test_realign_tags_remove_spaces (line 148) | def test_realign_tags_remove_spaces(self): method test_realign_tags (line 161) | def test_realign_tags(self): function suite (line 175) | def suite(): FILE: tests/test_plugin_todo.py class TodoTestCase (line 18) | class TodoTestCase(unittest.TestCase): method setUp (line 21) | def setUp(self): method test_toggle_todo_with_no_heading (line 51) | def test_toggle_todo_with_no_heading(self): method test_todo_toggle_NOTODO (line 61) | def test_todo_toggle_NOTODO(self): method test_toggle_todo_in_heading_with_no_todo_state_different_levels (line 68) | def test_toggle_todo_in_heading_with_no_todo_state_different_levels(se... method test_circle_through_todo_states (line 86) | def test_circle_through_todo_states(self): method test_circle_through_todo_states_with_more_states (line 119) | def test_circle_through_todo_states_with_more_states(self): method test_toggle_todo_with_cursor_in_text_not_heading (line 141) | def test_toggle_todo_with_cursor_in_text_not_heading(self): method test_get_states_without_seperator (line 157) | def test_get_states_without_seperator(self): method test_get_states_with_seperator (line 180) | def test_get_states_with_seperator(self): method test_get_next_state_with_no_current_state (line 229) | def test_get_next_state_with_no_current_state(self): method test_get_next_state_backward_with_no_current_state (line 240) | def test_get_next_state_backward_with_no_current_state(self): method test_get_next_state_with_invalid_current_state (line 254) | def test_get_next_state_with_invalid_current_state(self): method test_get_next_state_backward_with_invalid_current_state (line 265) | def test_get_next_state_backward_with_invalid_current_state(self): method test_get_next_state_with_current_state_equals_todo_state (line 282) | def test_get_next_state_with_current_state_equals_todo_state(self): method test_get_next_state_backward_with_current_state_equals_todo_state (line 290) | def test_get_next_state_backward_with_current_state_equals_todo_state(... method test_get_next_state_backward_misc (line 297) | def test_get_next_state_backward_misc(self): method test_get_next_state_with_jump_from_todo_to_done (line 329) | def test_get_next_state_with_jump_from_todo_to_done(self): method test_get_next_state_with_jump_from_done_to_todo (line 334) | def test_get_next_state_with_jump_from_done_to_todo(self): method test_get_next_state_in_current_sequence (line 339) | def test_get_next_state_in_current_sequence(self): method test_get_next_state_in_current_sequence_with_access_keys (line 346) | def test_get_next_state_in_current_sequence_with_access_keys(self): method test_get_next_keyword_sequence (line 368) | def test_get_next_keyword_sequence(self): function suite (line 421) | def suite(): FILE: tests/test_vimbuffer.py class VimBufferTestCase (line 16) | class VimBufferTestCase(unittest.TestCase): method setUp (line 17) | def setUp(self): method test_write_heading_tags (line 61) | def test_write_heading_tags(self): method test_write_multi_heading_bodies (line 79) | def test_write_multi_heading_bodies(self): method test_meta_information_assign_directly (line 100) | def test_meta_information_assign_directly(self): method test_meta_information_assign_string (line 113) | def test_meta_information_assign_string(self): method test_meta_information_assign_multi_line_string (line 121) | def test_meta_information_assign_multi_line_string(self): method test_meta_information_assign_one_element_array (line 129) | def test_meta_information_assign_one_element_array(self): method test_meta_information_assign_multi_element_array (line 137) | def test_meta_information_assign_multi_element_array(self): method test_meta_information_read_no_meta_information (line 145) | def test_meta_information_read_no_meta_information(self): method test_meta_information_assign_empty_array (line 178) | def test_meta_information_assign_empty_array(self): method test_meta_information_assign_empty_string (line 185) | def test_meta_information_assign_empty_string(self): method test_bufnr (line 192) | def test_bufnr(self): method test_write_meta_information (line 196) | def test_write_meta_information(self): method test_write_changed_title (line 254) | def test_write_changed_title(self): method test_write_changed_body (line 279) | def test_write_changed_body(self): method test_write_shortened_body (line 305) | def test_write_shortened_body(self): method test_write_lengthened_body (line 330) | def test_write_lengthened_body(self): method test_write_delete_heading (line 355) | def test_write_delete_heading(self): method test_write_delete_first_heading (line 391) | def test_write_delete_first_heading(self): method test_write_delete_last_heading (line 426) | def test_write_delete_last_heading(self): method test_write_delete_multiple_headings (line 470) | def test_write_delete_multiple_headings(self): method test_write_add_heading (line 529) | def test_write_add_heading(self): method test_write_add_heading_before_first_heading (line 552) | def test_write_add_heading_before_first_heading(self): method test_write_add_heading_after_last_heading_toplevel (line 586) | def test_write_add_heading_after_last_heading_toplevel(self): method test_write_add_heading_after_last_heading_subheading (line 620) | def test_write_add_heading_after_last_heading_subheading(self): method test_write_replace_one_heading (line 661) | def test_write_replace_one_heading(self): method test_write_replace_multiple_headings_with_one_heading (line 703) | def test_write_replace_multiple_headings_with_one_heading(self): method test_write_replace_multiple_headings_with_a_multiple_heading_structure (line 733) | def test_write_replace_multiple_headings_with_a_multiple_heading_struc... method test_dom (line 782) | def test_dom(self): method test_index_boundaries (line 799) | def test_index_boundaries(self): method test_heading_start_and_end (line 820) | def test_heading_start_and_end(self): method test_first_heading (line 882) | def test_first_heading(self): method test_heading_in_the_middle (line 907) | def test_heading_in_the_middle(self): method test_previous_headings (line 920) | def test_previous_headings(self): class VimBufferTagsTestCase (line 953) | class VimBufferTagsTestCase(unittest.TestCase): method setUp (line 954) | def setUp(self): method test_tag_read_no_word_with_tags (line 1004) | def test_tag_read_no_word_with_tags(self): method test_tag_read_one_word_with_tags (line 1010) | def test_tag_read_one_word_with_tags(self): method test_tag_read_TODO_with_tags (line 1016) | def test_tag_read_TODO_with_tags(self): method test_tag_read_one (line 1022) | def test_tag_read_one(self): method test_tag_read_multiple (line 1027) | def test_tag_read_multiple(self): method test_tag_no_tags (line 1032) | def test_tag_no_tags(self): method test_tag_read_space_and_tab_separated (line 1039) | def test_tag_read_space_and_tab_separated(self): method test_tag_read_tab_separated (line 1044) | def test_tag_read_tab_separated(self): method test_tag_read_long_title (line 1049) | def test_tag_read_long_title(self): method test_tag_read_long_title_plus_todo_state (line 1055) | def test_tag_read_long_title_plus_todo_state(self): method test_tag_del_tags (line 1064) | def test_tag_del_tags(self): method test_tag_replace_one_tag (line 1079) | def test_tag_replace_one_tag(self): method test_tag_replace_multiple_tags (line 1095) | def test_tag_replace_multiple_tags(self): class VimBufferTodoTestCase (line 1111) | class VimBufferTodoTestCase(unittest.TestCase): method setUp (line 1112) | def setUp(self): method test_no_space_after_upper_case_single_word_heading (line 1163) | def test_no_space_after_upper_case_single_word_heading(self): method test_todo_read_TODO (line 1177) | def test_todo_read_TODO(self): method test_todo_read_TODO_NOTODO (line 1182) | def test_todo_read_TODO_NOTODO(self): method test_todo_read_WAITING (line 1187) | def test_todo_read_WAITING(self): method test_todo_read_DONE (line 1192) | def test_todo_read_DONE(self): method test_todo_read_special (line 1197) | def test_todo_read_special(self): method test_todo_del_todo (line 1210) | def test_todo_del_todo(self): method test_todo_write_todo_uppercase (line 1226) | def test_todo_write_todo_uppercase(self): method test_todo_set_illegal_todo (line 1242) | def test_todo_set_illegal_todo(self): function suite (line 1252) | def suite(): FILE: tests/vim.py class VimWindow (line 4) | class VimWindow(object): method __init__ (line 7) | def __init__(self, test): method buffer (line 12) | def buffer(): class VimBuffer (line 22) | class VimBuffer(list): method __init__ (line 23) | def __init__(self, iterable=None): method append (line 30) | def append(self, o): class VimTest (line 41) | class VimTest(object): method __init__ (line 44) | def __init__(self): method buffer (line 49) | def buffer(): function eval (line 70) | def eval(cmd): function command (line 83) | def command(cmd):