Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Geobomatic

Pages: [1]
1
Support and Feedback / Re: keyboard shortcuts
« on: February 17, 2023, 10:43:04 »
I have the same issue, I rebind `View - Refresh` to something else, and it seems to stay after closing MC and launching it again, then next day (maybe when rebooted) it is back to F2, conflicting with rename

2
Support and Feedback / Re: Color syntax formatting: multilines regex?
« on: October 07, 2019, 16:50:06 »
I see :) thanks for the answer :D

3
Support and Feedback / Color syntax formatting: multilines regex?
« on: October 07, 2019, 12:00:32 »
Hi,

I'm trying to match
Code: [Select]
/\*.*\*/ for multilines comments in C/C++ code but it works only for /* ... */ on one line.

Am I missing something or it is a limitation in the engine?

Regards,

4
Support and Feedback / On Windows shutdown, session is not saved
« on: February 15, 2019, 17:24:28 »
I don't close MC before hitting "shut down" and I can see that MC doesn't save the current state of the session as is does when I'm closing MC properly.

5
Support and Feedback / Re: ** NEW VERSION v8.1 **
« on: May 07, 2018, 16:40:55 »
Great version! Thanks!

6
This was fixed in 8.0 (or 8.1, I don't remember ^^)

7
Support and Feedback / Re: Is Right drag supported?
« on: March 22, 2018, 11:52:22 »
I've worked around this limitation with a multiscript as user command:
Code: [Select]
@var $selection = GetSelectedPaths();
@var $len = arrayCount($selection);
@var $target = GetTargetPath();
@var $cmd = "svn.exe move ";
@var $params = "";
@var $n;
for ($n = 0; $n < $len; $n++)
{
  $params = $params + " " + $selection[$n];
}

MC.Run CMD={$cmd + $params + " " + $target}

8
Support and Feedback / Is Right drag supported?
« on: March 14, 2018, 15:51:45 »
With TortoiseSVN, we can right drag files and folders in order to pop a menu on release in order to SVN move files around a repository. It seems that we can't right drag with MC or am I missing something?

Thanks!

9
Support and Feedback / On Win10 Shutdown, MC prevent the shutdown
« on: March 10, 2018, 11:38:23 »
On Windows Version 10.0.16299 Build 16299 (Fall creator update) when MC is running and I'm shutting down the computer, MC prevent windows to complete the operation. Before Fall creator update, MC was force closed I think as it didn't save the session, but I could live with it. Now it prevent the computer to shutdown and I have to force close it manually.

10
Support and Feedback / Re: MultiDataViewer profile loading
« on: February 21, 2018, 14:42:03 »
Good luck! And thank you for this piece of software!

11
Support and Feedback / Re: MultiDataViewer profile loading
« on: February 21, 2018, 14:28:02 »
ok, seems that viewmode to anything else than 0 breaks the feature :-/

12
Support and Feedback / MultiDataViewer profile loading
« on: February 21, 2018, 14:14:23 »
Hi,

I'm having issue with the profile loading feature.

I've put
*.md

in the "Auto select profile - File matching filter" field, underneath checkbox not checked but when opening a .md file, the profile does not load :-/

Code: [Select]
<viewprofile id="1" viewmode="4" name="Markdown">
      <hyperlinks value="-1"/>
      <rowlines value="-1"/>
      <strips value="-1"/>
      <linenum value="-1"/>
      <font value="Courier New,10"/>
      <colortheme value="15563eb63f354962ae2bdad91c749de1"/>
      <fullpathfilter value="0"/>
      <filter value="*.md"/>
      <formater value=""/>
    </viewprofile>

exemple of a file I'm opening:
C:\Users\Geobomatic\Documents\Perso\exitwp\converted_posts\2004-12-18-imagine.md

What am I missing?

Pages: [1]