1. Can your editor do this kind of auto completion or clip-text insertion?
You type "fori " (ending with a space), and you get:
for (int i=0;i<n;i++) {
|
}
Where | is the cursor position.
And you can create and customize your own shortcut get whatever you want ?
2. Can your editor select the $ symbol (too) double-clicking a PHP variable ($myPHPvariable) ?
Or, the selection will be only "myPHPvariable" ($ not selected)?
3. Can your editor high-light
//single line comment
/*
block comment
*/
with 2 different color? And may I able to customize the high-light colors?
4. Using your editor, Can I define many user tool short-cut ?
For example:
CTRL+1 to compile the current .java (javac.exe MyClass.java)
CTRL+2 to execute the current java class (java.exe MyClass)
5. Can your editor print code with syntax high-light color?
6. Are settings stored in files or in the MS Windows registry? Where are located this (those) files?
Using a .BAT script, I would quickly restore/backup settings to transfer them to another computer (office, school)
Thanks so much.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Nobody said:
"1. Can your editor do this kind of auto completion or clip-text insertion?
You type "fori " (ending with a space), and you get:
for (int i=0;i<n;i++) {
|
}
Where | is the cursor position."
"2. Can your editor select the $ symbol (too) double-clicking a PHP variable ($myPHPvariable) ?
Or, the selection will be only "myPHPvariable" ($ not selected)?"
If you double click in between the $ and the m you'll get what you want. Not sure if you can configure anything to make it do it when you click anywhere else.
"6. Are settings stored in files or in the MS Windows registry? Where are located this (those) files?
Using a .BAT script, I would quickly restore/backup settings to transfer them to another computer (office, school)"
Have a look at the xml files in C:\Program Files\Notepad++. Not sure if that's everything.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
1. Can your editor do this kind of auto completion or clip-text insertion?
You type "fori " (ending with a space), and you get:
for (int i=0;i<n;i++) {
|
}
Where | is the cursor position.
And you can create and customize your own shortcut get whatever you want ?
2. Can your editor select the $ symbol (too) double-clicking a PHP variable ($myPHPvariable) ?
Or, the selection will be only "myPHPvariable" ($ not selected)?
3. Can your editor high-light
//single line comment
/*
block comment
*/
with 2 different color? And may I able to customize the high-light colors?
4. Using your editor, Can I define many user tool short-cut ?
For example:
CTRL+1 to compile the current .java (javac.exe MyClass.java)
CTRL+2 to execute the current java class (java.exe MyClass)
5. Can your editor print code with syntax high-light color?
6. Are settings stored in files or in the MS Windows registry? Where are located this (those) files?
Using a .BAT script, I would quickly restore/backup settings to transfer them to another computer (office, school)
Thanks so much.
Nobody said:
"1. Can your editor do this kind of auto completion or clip-text insertion?
You type "fori " (ending with a space), and you get:
for (int i=0;i<n;i++) {
|
}
Where | is the cursor position."
I haven't tried it, but have a read of http://notepad-plus.sourceforge.net/uk/auto-completion-HOWTO.php. Not sure about controlling the final cursor location.
"2. Can your editor select the $ symbol (too) double-clicking a PHP variable ($myPHPvariable) ?
Or, the selection will be only "myPHPvariable" ($ not selected)?"
If you double click in between the $ and the m you'll get what you want. Not sure if you can configure anything to make it do it when you click anywhere else.
"6. Are settings stored in files or in the MS Windows registry? Where are located this (those) files?
Using a .BAT script, I would quickly restore/backup settings to transfer them to another computer (office, school)"
Have a look at the xml files in C:\Program Files\Notepad++. Not sure if that's everything.