Skip to content

Commit

Permalink
set editor with line numbers as default
Browse files Browse the repository at this point in the history
  • Loading branch information
octaeder committed Apr 24, 2024
1 parent 290429f commit 4b806bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ ConfigManager::ConfigManager(QObject *parent): QObject (parent),
registerOption("Editor/WrapLineWidth", &editorConfig->lineWidth, 80, &pseudoDialog->spinBoxWrapLineWidth);
registerOption("Editor/Parentheses Matching", &editorConfig->parenmatch, true); //TODO: checkbox?
registerOption("Editor/Parentheses Completion", &editorConfig->parenComplete, true, &pseudoDialog->checkBoxAutoCompleteParens);
registerOption("Editor/Line Number Multiples", &editorConfig->showlinemultiples, 0);
registerOption("Editor/Line Number Multiples", &editorConfig->showlinemultiples, 1);
registerOption("Editor/Cursor Surrounding Lines", &editorConfig->cursorSurroundLines, 5);
registerOption("Editor/BoldCursor", &editorConfig->boldCursor, true, &pseudoDialog->checkBoxBoldCursor);
registerOption("Editor/CenterDocumentInEditor", &editorConfig->centerDocumentInEditor, false, &pseudoDialog->checkBoxCenterDocumentInEditor);
Expand Down

0 comments on commit 4b806bc

Please sign in to comment.