aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/preferences.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-06-26 22:25:14 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-06-26 22:25:14 +0000
commita1477696b5f7296ed7b5552dcf1ab15dee90475d (patch)
treebce3b16e8cee3bb64ad4efb7d21c216ab1cd5a18 /ide/preferences.ml
parentca6d8b2a4a29f0565a367a9a64c153f090ec32ff (diff)
Added the show_margin_right option to CoqIDE
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15496 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/preferences.ml')
-rw-r--r--ide/preferences.ml6
1 files changed, 6 insertions, 0 deletions
diff --git a/ide/preferences.ml b/ide/preferences.ml
index 68ea907ce..f8f3fe930 100644
--- a/ide/preferences.ml
+++ b/ide/preferences.ml
@@ -144,6 +144,7 @@ type pref =
mutable show_line_number : bool;
mutable auto_indent : bool;
mutable show_spaces : bool;
+ mutable show_right_margin : bool;
mutable spaces_instead_of_tabs : bool;
mutable tab_length : int;
mutable highlight_current_line : bool;
@@ -219,6 +220,7 @@ let current = {
show_line_number = false;
auto_indent = false;
show_spaces = true;
+ show_right_margin = false;
spaces_instead_of_tabs = true;
tab_length = 2;
highlight_current_line = false;
@@ -285,6 +287,7 @@ let save_pref () =
add "show_line_number" [string_of_bool p.show_line_number] ++
add "auto_indent" [string_of_bool p.auto_indent] ++
add "show_spaces" [string_of_bool p.show_spaces] ++
+ add "show_right_margin" [string_of_bool p.show_right_margin] ++
add "spaces_instead_of_tabs" [string_of_bool p.spaces_instead_of_tabs] ++
add "tab_length" [string_of_int p.tab_length] ++
add "highlight_current_line" [string_of_bool p.highlight_current_line] ++
@@ -366,6 +369,7 @@ let load_pref () =
set_bool "show_line_number" (fun v -> np.show_line_number <- v);
set_bool "auto_indent" (fun v -> np.auto_indent <- v);
set_bool "show_spaces" (fun v -> np.show_spaces <- v);
+ set_bool "show_right_margin" (fun v -> np.show_right_margin <- v);
set_bool "spaces_instead_of_tabs" (fun v -> np.spaces_instead_of_tabs <- v);
set_int "tab_length" (fun v -> np.tab_length <- v);
set_bool "highlight_current_line" (fun v -> np.highlight_current_line <- v);
@@ -502,6 +506,7 @@ let configure ?(apply=(fun () -> ())) () =
let auto_indent = gen_button "Auto indentation" current.auto_indent in
let auto_complete = gen_button "Auto completion" current.auto_complete in
let show_spaces = gen_button "Show spaces" current.show_spaces in
+ let show_right_margin = gen_button "Show right margin" current.show_right_margin in
let spaces_instead_of_tabs =
gen_button "Insert spaces instead of tabs"
current.spaces_instead_of_tabs
@@ -523,6 +528,7 @@ let configure ?(apply=(fun () -> ())) () =
current.show_line_number <- line#active;
current.auto_indent <- auto_indent#active;
current.show_spaces <- show_spaces#active;
+ current.show_right_margin <- show_right_margin#active;
current.spaces_instead_of_tabs <- spaces_instead_of_tabs#active;
current.highlight_current_line <- highlight_current_line#active;
current.auto_complete <- auto_complete#active;