Lines Matching refs:options
57 func RunVimInTerminal(arguments, options) argument
81 let rows = get(a:options, 'rows', 20)
82 let cols = get(a:options, 'cols', 75)
83 let statusoff = get(a:options, 'statusoff', 1)
85 if get(a:options, 'keep_t_u7', 0)
93 let options = #{curwin: 1}
95 let options.term_rows = rows
96 let options.term_cols = cols
99 " Accept other options whose name starts with 'term_'.
100 call extend(options, filter(copy(a:options), 'v:key =~# "^term_"'))
102 let buf = term_start(cmd, options)
117 if get(a:options, 'wait_for_ruler', 1)
161 func Run_shell_in_terminal(options) argument
163 let buf = term_start([&shell, '/k'], a:options)
165 let buf = term_start(&shell, a:options)