Insert current file name at cursor position
Posted: 09 Sep 2011 15:53
As another possible solution to this post:
http://www.rjsoftware.se/Forum/viewtopic.php?f=2&t=1922
Here's a simple script to insert a fully-qualified copy of the current file's name at the cursor position.
http://www.rjsoftware.se/Forum/viewtopic.php?f=2&t=1922
Here's a simple script to insert a fully-qualified copy of the current file's name at the cursor position.
Code: Select all
#language C++Script
// Insert the fully qualified current file name at the cursor position
{
Document.InsertText(Document.FileName);
}