Home
last modified time | relevance | path

Searched refs:tab_to_space (Results 1 – 5 of 5) sorted by relevance

/dports/devel/bpython/bpython-0.22.1/bpython/curtsiesfrontend/
H A Dpreprocess.py43 def tab_to_space(m): function
47 result_lines.append(tabs_to_spaces_re.sub(tab_to_space, line))
/dports/editors/mle/mle-1.4.3/
H A Dbview.c40 self->tab_to_space = editor->tab_to_space; in bview_new()
653 self->tab_to_space = (use_syntax && use_syntax->tab_to_space >= 0) in bview_set_syntax()
654 ? use_syntax->tab_to_space in bview_set_syntax()
655 : self->editor->tab_to_space; in bview_set_syntax()
H A Dcmd.c80 if (ctx->bview->tab_to_space) { in cmd_insert_data()
838 ctx->bview->tab_to_space = vali ? 1 : 0; in cmd_set_opt()
991 use_tabs = ctx->bview->tab_to_space ? 0 : 1; in _cmd_indent()
1571 if (ctx->bview->tab_to_space in _cmd_insert_auto_indent_newline()
1578 } else if (!ctx->bview->tab_to_space in _cmd_insert_auto_indent_newline()
1622 } else if (ctx->bview->tab_to_space in _cmd_insert_auto_indent_closing_bracket()
1628 } else if (!ctx->bview->tab_to_space in _cmd_insert_auto_indent_closing_bracket()
H A Dmle.h105 int tab_to_space; member
149 int tab_to_space; member
195 int tab_to_space; member
H A Deditor.c62 …t **optret_syntax, char *name, char *path_pattern, int tab_width, int tab_to_space, srule_def_t *d…
86 editor->tab_to_space = MLE_DEFAULT_TAB_TO_SPACE; in editor_init()
1872 …t **optret_syntax, char *name, char *path_pattern, int tab_width, int tab_to_space, srule_def_t *d… in _editor_init_syntax() argument
1879 syntax->tab_to_space = tab_to_space >= 0 ? (tab_to_space ? 1 : 0) : -1; in _editor_init_syntax()
2112 editor->tab_to_space = atoi(optarg) ? 1 : 0; in _editor_init_from_args()