if has_key(g:polyglot_is_disabled, 'smt2') finish endif setlocal iskeyword+=-,:,#,',$ " If no command for invoking a solver is specified in ~/.vimrc, test if either " 'z3' or 'boolector' is accessible through $PATH (in that order) if !exists("g:smt2_solver_command") if executable("z3") let g:smt2_solver_command = "z3" elseif executable("boolector") let g:smt2_solver_command = "boolector" endif endif " If no command line switch for printing the solver's version is specified in " ~/.vimrc, use '--version' if !exists("g:smt2_solver_version_switch") let g:smt2_solver_version_switch = "--version" endif " Mappings nnoremap r :call smt2#RunSolver() nnoremap R :call smt2#RunSolverAndShowResult() nnoremap v :call smt2#PrintSolverVersion() " Comment String setlocal commentstring=;%s