Search found 15 matches

by nightroman
Mon Mar 31, 2008 1:48 pm
Forum: Plug-In Developers
Topic: Active panel - left or right?
Replies: 10
Views: 68419

Is not it enough to introduce only one flag, say, PFLAGS_PANELLEFT? If it is set then the panel is left, otherwise it is right... Of course, if both flags PFLAGS_PANELRIGHT and PFLAGS_PANELLEFT exist and both are not set it gives us kind of 3rd state possible ("unknown" or something). But ...
by nightroman
Sun Oct 21, 2007 6:28 pm
Forum: Support and Troubleshooting
Topic: Non-english characters in file names
Replies: 22
Views: 44298

FAR does not support Unicode, it is a well known feature. They say Unicode FAR is coming but don't expect it will be very soon. Personally, I use plugin PowerShellFar where provider panel (provider is FileSystem in this case) work fine with Unicode paths, you can perform all standard operations (cop...
by nightroman
Thu Oct 04, 2007 4:11 pm
Forum: General Discussions
Topic: How to search for files faster in FAR manager?
Replies: 13
Views: 60870

jonib

I don't really know what antivirus is used in our company - I just got this brief message with no more details and the file was not downloaded.

Sorry for a false alarm (if it is), but I think it is better to be a little bit cautious than an easy target.
by nightroman
Thu Oct 04, 2007 2:16 pm
Forum: General Discussions
Topic: How to search for files faster in FAR manager?
Replies: 13
Views: 60870

FYI: my antivirus blocked the file ndff.exe, due to "one or two viruses found".
by nightroman
Wed Sep 12, 2007 1:34 pm
Forum: Bug Reports
Topic: slow response on ctrl-alt-shift
Replies: 3
Views: 13818

joejoe
Can't repro, same build, same /p

pp
Yes, I think CtrlAltShift is only for looking at console contents. Personally, I prefer CtrO for this.
by nightroman
Mon Sep 10, 2007 11:44 am
Forum: General Discussions
Topic: how to emulate windows explorer folder mode
Replies: 9
Views: 23182

Just to be sure that you don't disable a useful feature for yourself: CtrlUp and CtrlDown by default perform a very handy operation - they change height of panels so that a user can see relatively small output of commands in the bottom of console without hiding the panels. If you don't need this ope...
by nightroman
Thu Sep 06, 2007 1:14 pm
Forum: General Discussions
Topic: how to emulate windows explorer folder mode
Replies: 9
Views: 23182

By the way, I also find FAR "Directory Tree" feature very awkward nowadays, when thousands of directories on a disk is pretty normal.
by nightroman
Thu Sep 06, 2007 1:01 pm
Forum: General Discussions
Topic: how to emulate windows explorer folder mode
Replies: 9
Views: 23182

asdffdsa Your second proposal can be emulated just now with a macro: Sequence: F11 0 Tab CtrlPgDn Tab where 0 is a shortcut for "Same Folder" in the plugins menu (you can assign and use another shortcut) Note that it works not only for folders but for archives as well. Your first proposal...
by nightroman
Mon Sep 03, 2007 5:58 pm
Forum: General Plug-In Discussions
Topic: Far.NET3
Replies: 6
Views: 16520

nenadl The short answer is "yes". For example quick view works almost in any panel created by the plugin PowerShellFar which is a user of Far.NET3. See example there: AnyPanel.OnGettingFiles() which is a handler of IPanelPlugin.GettingFiles event. Here is a complete example in PowerShell ...
by nightroman
Fri Jul 20, 2007 9:26 am
Forum: General Plug-In Discussions
Topic: PowerShellFar
Replies: 2
Views: 11356

My first idea is that you have to set PluginStartupCode to ". Profile-.ps1" (mind dot-space-profile), not "Profile-.ps1". If you don't use dot your profile is executed in its own script scope and all stuff simply goes out of the global scope. If you use dot the script is executed...
by nightroman
Sun Mar 18, 2007 10:02 am
Forum: General Plug-In Discussions
Topic: Far.NET3
Replies: 6
Views: 16520

The plugin help is ready: FarNET.doc.3.3.7.rar at: http://code.google.com/p/farnet/downloads/list

The vesion 3.3.7 itself is expected by Monday.
by nightroman
Thu Mar 15, 2007 9:28 am
Forum: General Plug-In Discussions
Topic: Far.NET3
Replies: 6
Views: 16520

In Reflector tree (left panel):
- navigate to FarNetIntf -> Far Manager -> IFar -> CreateDialog
- press <space>
- enjoy information at the right panel

Also, take a look at Reflector View -> Options and set options as you like.
by nightroman
Thu Mar 15, 2007 7:50 am
Forum: Plug-In Developers
Topic: Google Desktop Search plug-in
Replies: 16
Views: 33038

I propose to discuss the Far.NET3 plugin here: Forum Index -> General Plug-In Discussions -> Far.NET3, so that information is available for everybody who uses Far.NET3. There I have posted a tip about using included XML documentation.
by nightroman
Thu Mar 15, 2007 7:46 am
Forum: General Plug-In Discussions
Topic: Far.NET3
Replies: 6
Views: 16520

Far.NET3

Far.NET3 XML Documentation Included XML documentation is not perhaps a perfect form of documentation but it is always up-to-date and it is actually the most practically useful for development. Visual Studio Object Browser automatically uses XML comments well enough. Another possible way is to use fo...
by nightroman
Wed Mar 14, 2007 3:55 am
Forum: Plug-In Developers
Topic: Google Desktop Search plug-in
Replies: 16
Views: 33038

Hi jonib , At first I would recommend you to take one more plugin: PowerShellFar. I am not proposing to use PowerShell for your task (though I am almost sure that it is possible), perhaps you don't even have PowerShell installed at all. No problem. Just take a look at the source code of the plugin -...