Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sun, 12 Mar 2023 21:58:16 UTC Commit: b51d35bbc6252aaab9da7ca0fb2dcf52931ec1df https://github.com/geany/geany/commit/b51d35bbc6252aaab9da7ca0fb2dcf52931ec1...
Log Message: ----------- Place # at the beginning of the line with the example in filetype conf files
The previous syntax with indented # was an invalid conf file syntax and Scintilla didn't highlight these lines correctly.
Modified Paths: -------------- data/filedefs/filetypes.Arduino.conf data/filedefs/filetypes.CUDA.conf data/filedefs/filetypes.Clojure.conf data/filedefs/filetypes.Graphviz.conf data/filedefs/filetypes.TypeScript.conf data/filedefs/filetypes.abaqus data/filedefs/filetypes.actionscript data/filedefs/filetypes.ada data/filedefs/filetypes.asm data/filedefs/filetypes.batch data/filedefs/filetypes.c data/filedefs/filetypes.caml data/filedefs/filetypes.cmake data/filedefs/filetypes.cobol data/filedefs/filetypes.conf data/filedefs/filetypes.cpp data/filedefs/filetypes.cs data/filedefs/filetypes.css data/filedefs/filetypes.d data/filedefs/filetypes.docbook data/filedefs/filetypes.erlang data/filedefs/filetypes.f77 data/filedefs/filetypes.forth data/filedefs/filetypes.fortran data/filedefs/filetypes.freebasic data/filedefs/filetypes.gdscript data/filedefs/filetypes.glsl data/filedefs/filetypes.go data/filedefs/filetypes.haskell data/filedefs/filetypes.haxe data/filedefs/filetypes.html data/filedefs/filetypes.java data/filedefs/filetypes.javascript data/filedefs/filetypes.latex data/filedefs/filetypes.lisp data/filedefs/filetypes.lua data/filedefs/filetypes.makefile data/filedefs/filetypes.matlab data/filedefs/filetypes.nsis data/filedefs/filetypes.objectivec data/filedefs/filetypes.pascal data/filedefs/filetypes.perl data/filedefs/filetypes.php data/filedefs/filetypes.po data/filedefs/filetypes.powershell data/filedefs/filetypes.python.in data/filedefs/filetypes.r data/filedefs/filetypes.restructuredtext data/filedefs/filetypes.ruby data/filedefs/filetypes.rust data/filedefs/filetypes.sh data/filedefs/filetypes.smalltalk data/filedefs/filetypes.sql data/filedefs/filetypes.tcl data/filedefs/filetypes.vala data/filedefs/filetypes.verilog data/filedefs/filetypes.vhdl data/filedefs/filetypes.xml data/filedefs/filetypes.yaml
Modified: data/filedefs/filetypes.Arduino.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -22,9 +22,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true # context action command (please see Geany's main documentation for details)
Modified: data/filedefs/filetypes.CUDA.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -31,9 +31,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.Clojure.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -22,9 +22,9 @@ comment_single=;
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.Graphviz.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -31,9 +31,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.TypeScript.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -31,9 +31,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.abaqus 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -30,9 +30,9 @@ comment_single=**
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.actionscript 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -27,9 +27,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.ada 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -37,9 +37,9 @@ comment_single=--
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.asm 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -41,9 +41,9 @@ comment_single=;
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.batch 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -30,9 +30,9 @@ comment_single=REM\s
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -60,9 +60,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.caml 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -42,9 +42,9 @@ comment_close=*)
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.cmake 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -42,9 +42,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.cobol 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -36,9 +36,9 @@ comment_single=*>
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.conf 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -28,9 +28,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.cpp 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -30,9 +30,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.cs 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -31,9 +31,9 @@
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.css 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -57,9 +57,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.d 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -52,9 +52,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.docbook 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -59,9 +59,9 @@ comment_close=-->
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.erlang 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -59,9 +59,9 @@ comment_single=%
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.f77 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -42,9 +42,9 @@ primary=access action advance allocatable allocate apostrophe assign assignment
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.forth 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -41,9 +41,9 @@ comment_close= )
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.fortran 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -26,9 +26,9 @@ comment_single=!
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.freebasic 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -48,9 +48,9 @@ comment_close='/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.gdscript 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -42,9 +42,9 @@ comment_single=#\s
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.glsl 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -27,9 +27,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.go 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -34,9 +34,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.haskell 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -58,9 +58,9 @@ comment_close=-}
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.haxe 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -27,9 +27,9 @@ comment_single=//
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.html 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -111,9 +111,9 @@
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.java 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -28,9 +28,9 @@
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.javascript 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -28,9 +28,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.latex 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -39,9 +39,9 @@ comment_single=%
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.lisp 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -34,9 +34,9 @@ comment_close=|#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.lua 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -56,9 +56,9 @@ comment_close=--]]
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.makefile 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -27,9 +27,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.matlab 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -33,9 +33,9 @@ comment_single=%
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.nsis 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -47,9 +47,9 @@ comment_single=;
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.objectivec 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -29,9 +29,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.pascal 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -44,9 +44,9 @@ comment_close=}
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.perl 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -75,9 +75,9 @@
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.php 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -25,9 +25,9 @@
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.po 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -36,9 +36,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.powershell 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -43,9 +43,9 @@ comment_close=#>
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.python.in 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -53,9 +53,9 @@ comment_single=#\s
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.r 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -38,9 +38,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=false
Modified: data/filedefs/filetypes.restructuredtext 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -20,9 +20,9 @@ comment_single=..\s
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments #comment_use_indent=true
Modified: data/filedefs/filetypes.ruby 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -59,9 +59,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.rust 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -48,9 +48,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.sh 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -36,11 +36,11 @@ comment_single=# #comment_open= #comment_close=
-# set to false if a comment character/string should start a column 0 of a line, true uses any +# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.smalltalk 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -41,9 +41,9 @@ comment_close="
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.sql 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -43,9 +43,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.tcl 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -47,9 +47,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.vala 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -31,9 +31,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments #comment_use_indent=true
Modified: data/filedefs/filetypes.verilog 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -46,9 +46,9 @@ comment_close=*/
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.vhdl 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -46,9 +46,9 @@ comment_single=--
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.xml 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -21,9 +21,9 @@ comment_close=-->
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
Modified: data/filedefs/filetypes.yaml 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -35,9 +35,9 @@ comment_single=#
# set to false if a comment character/string should start at column 0 of a line, true uses any # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d - #command_example(); +# #command_example(); # setting to false would generate this -# command_example(); +# # command_example(); # This setting works only for single line comments comment_use_indent=true
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).