What a great piece of code. I do have a suggestion:
When doing "blog-style" entries, it would very helpful to have a hotkey sequence or other method by which to enter the current date or date/time as you are typing.
Logged In: YES user_id=799761 Originator: NO
The coming soon v0.9 will have a hotkey for inserting date & time
Logged In: YES user_id=1891851 Originator: NO
yes please [f5] as in notepad or [[time]] [[date]]
[[timedate]]
i like to timestamp my jots and would like to move out of notepad into stickwikis cos they have working hyperlinks!
george
In FF I use Control+Shift+d, which wants to bookmark, but with a full time date stamp, which I copy, escape then paste into the editor.
In 0.12.x you can do the following: Create a plug-in:
/* writedate plugin */
function writedate(){ var d=new Date(); TagThis(d, ""); }
Then create a hotkey:
$CUSTOM(writedate) d
now shift+alt+d will print the date.
Log in to post a comment.
Logged In: YES
user_id=799761
Originator: NO
The coming soon v0.9 will have a hotkey for inserting date & time
Logged In: YES
user_id=1891851
Originator: NO
yes please
[f5] as in notepad
or [[time]]
[[date]]
[[timedate]]
i like to timestamp my jots
and would like to move out of notepad
into stickwikis
cos they have working hyperlinks!
george
In FF I use Control+Shift+d, which wants to bookmark, but with a full time date stamp, which I copy, escape then paste into the editor.
In 0.12.x you can do the following: Create a plug-in:
/* writedate plugin */
function writedate(){
var d=new Date();
TagThis(d, "");
}
Then create a hotkey:
$CUSTOM(writedate) d
now shift+alt+d will print the date.