Skip to content
Snippets Groups Projects
Commit 55fdda9b authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

Command modifier for in-place operation now "!" instead of "=", as inspired by Ruby.

parent 708e99a4
No related branches found
No related tags found
No related merge requests found
...@@ -46,9 +46,9 @@ bool fridaCommand( string cmd ) ...@@ -46,9 +46,9 @@ bool fridaCommand( string cmd )
// Extract overwrite marker: // Extract overwrite marker:
NOlm::overwrite = 0; NOlm::overwrite = 0;
if( cmd=="=" ) if( cmd=="!" )
throw "overwrite marker = must immediately follow a command"; throw "overwrite marker = must immediately follow a command";
if ( cmd!="" && cmd[cmd.size()-1]=='=' ) { if ( cmd!="" && cmd[cmd.size()-1]=='!' ) {
NOlm::overwrite = 1; NOlm::overwrite = 1;
cmd.erase(cmd.size()-1,1); cmd.erase(cmd.size()-1,1);
} }
...@@ -77,18 +77,13 @@ bool fridaCommand( string cmd ) ...@@ -77,18 +77,13 @@ bool fridaCommand( string cmd )
" o operate on variables, compute integrals, ...\n" " o operate on variables, compute integrals, ...\n"
" r read raw data (currently only for SPHERES)\n" " r read raw data (currently only for SPHERES)\n"
" _ special / temporary commands\n" " _ special / temporary commands\n"
"Modifier (appended to command):\n"
" ! operate in place (overwrite)\n"
"More help:\n" "More help:\n"
" \\h help on meta commands and macros\n" " \\h help on meta commands and macros\n"
" hm command modifiers\n"
" hf math operators and functions\n" " hf math operators and functions\n"
; ;
} else if (cmd == "hm") {
cout <<
"Command modifiers:\n"
" <cmd>= overwrite the file instead of creating a new one\n"
;
} else if (cmd == "hf") { } else if (cmd == "hf") {
cout << NFunctions::list(); cout << NFunctions::list();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment