Skip to content

Commit

Permalink
Always perform LaTeX conversion after pressing Tab when LaTeX input m…
Browse files Browse the repository at this point in the history
…ethod is enabled, issue #289.
  • Loading branch information
zufuliu committed Mar 6, 2021
1 parent d911f70 commit db2a834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Notepad2.c
Original file line number Diff line number Diff line change
Expand Up @@ -5074,7 +5074,7 @@ LRESULT MsgNotify(HWND hwnd, WPARAM wParam, LPARAM lParam) {
if (scn->listCompletionMethod == SC_AC_NEWLINE) {
SciCall_NewLine();
} else {
SciCall_Tab();
SciCall_TabCompletion((autoCompletionConfig.bLaTeXInputMethod * TAB_COMPLETION_LATEX) | TAB_COMPLETION_DEFAULT);
}
return 0;
}
Expand Down

0 comments on commit db2a834

Please sign in to comment.