Search found 1171 matches
- 2020 Nov 14, 00:54
- Forum: xplorer² Professional
- Topic: blog: stuck between a rock and a hard place
- Replies: 13
- Views: 491
Re: blog: stuck between a rock and a hard place
I think this post should be moved to the General forum. It has nothing to do with x2.
- 2020 Oct 06, 02:04
- Forum: xplorer² Professional
- Topic: RegEx Rename fail in 4.3
- Replies: 19
- Views: 585
Re: RegEx Rename fail in 4.3
It shows however that the "Quoted Characters" works on "Matching-Mode/Input" and not for changing the Output chars ($1,$2,$+) The main purpose is :: metacharacters can be handled like the common characters i.e. \Q(a+b)*3\E :: matches "(a+b)*3". and without quoting :: \(a\+b\)\*3 :: Without \Q...\E,...
- 2020 Oct 05, 11:02
- Forum: xplorer² Professional
- Topic: RegEx Rename fail in 4.3
- Replies: 19
- Views: 585
Re: RegEx Rename fail in 4.3
Unfortunately case conversion is still a problem. filename = camelCaseToSnakeCase.txt regexp = (.+?)([A-Z]) replace with = $1_\L$2\E expected result = camel_case_to_snake_case.txt result = camel__LC_Ease__LT_Eo__LS_Enake__LC_Ease.txt I'm following the instructions here: <http://www.regexlab.com/en/...
- 2020 Sep 24, 12:47
- Forum: xplorer² Professional
- Topic: new beta version 4407
- Replies: 16
- Views: 524
Re: new beta version 4407
I have the user command list set up to break columns at 25 lines and I have grouped user commands so that it is much easier and quicker to find them in the list than in the organize dialog. But consider this a very low level request because having the properties command from the toolbar buttons pret...
- 2020 Sep 23, 19:08
- Forum: xplorer² Professional
- Topic: new beta version 4407
- Replies: 16
- Views: 524
Re: new beta version 4407
I've been using the 4409 beta for that last couple of days and it looks pretty good. The export settings to ini file is a little wacky with opening all layouts but if that is what it takes so be it... it's not like I will be doing that very often. My favorite new feature is the right-click propertie...
- 2020 Sep 22, 11:15
- Forum: xplorer² Professional
- Topic: blog: rinse filenames
- Replies: 6
- Views: 662
Re: blog: rinse filenames
The Windows 10 explorer will show a little popup when you try to add these characters to a filename: \ / : ? * " < > | xplorer2 does not complain if you try to rename a file using these illegal characters but it automatically replaces them with _ when you press enter however sometimes if you rename ...
- 2020 Sep 20, 02:00
- Forum: xplorer² Professional
- Topic: change character that replaces illegal ones on rename
- Replies: 2
- Views: 74
Re: change character that replaces illegal ones on rename
That would be nice. I usually prefer dash (-) as a replacement character.
- 2020 Sep 17, 22:46
- Forum: xplorer² Professional
- Topic: change character that replaces illegal ones on rename
- Replies: 2
- Views: 74
change character that replaces illegal ones on rename
Nikos, at some point you added a feature to automatically replace illegal characters with underscore (_) on rename... is there a setting to choose what character to use?
- 2020 Sep 17, 22:43
- Forum: xplorer² Professional
- Topic: Customize Toolbar Dialog Box, suggestion
- Replies: 4
- Views: 91
Re: Customize Toolbar Dialog Box, suggestion
Thanks for that... I got a good laugh "from K's own words"
I've used that K's toolbar customization tools for a long time and have added it to most of my layouts.
I've used that K's toolbar customization tools for a long time and have added it to most of my layouts.
- 2020 May 21, 18:25
- Forum: xplorer² Professional
- Topic: blog: settings in APPDATA folder
- Replies: 8
- Views: 380
Re: blog: settings in APPDATA folder
That does seem like something a macro could do but it is not a process I would need to do often. I am more interested/concerned about what other pieces would need to be open for their settings to get copied from ini to registry. I don't use the tree or the preview pane much... do they have any setti...
- 2020 May 21, 18:07
- Forum: xplorer² Professional
- Topic: blog: settings in APPDATA folder
- Replies: 8
- Views: 380
Re: blog: settings in APPDATA folder
It seems the scrap pane settings do not get copied to registry when switching from ini file. They need to be open as well.
- 2020 May 21, 14:59
- Forum: xplorer² Professional
- Topic: blog: settings in APPDATA folder
- Replies: 8
- Views: 380
Re: blog: settings in APPDATA folder
I did not think about that. I'll try that if I decide to switch back but I doubt I will... my desire for portability for the layouts on my main PC is not as strong anymore.
- 2020 May 21, 09:46
- Forum: xplorer² Professional
- Topic: blog: settings in APPDATA folder
- Replies: 8
- Views: 380
Re: blog: settings in APPDATA folder
You have mentioned several times that saving settings in registry is faster than using an ini file. I have been using an ini in the program folder pretty much since I started using the ultimate version but I decided to switch to saving settings in the registry to see if I notice any improvement. App...
- 2020 May 12, 17:42
- Forum: xplorer² Professional
- Topic: details pane customization
- Replies: 8
- Views: 327
Re: details pane customization
I see what I did wrong... <A id="s_12" href="@">Links</a>: <span>value</span> I was changing the opening <A to <b but not the closing </a> to </b>... brain fart... I started to add Links to the Attributes pane so I copied the code from Attributes but then decided to move it to its own pane since Lin...
- 2020 May 11, 21:49
- Forum: xplorer² Professional
- Topic: details pane customization
- Replies: 8
- Views: 327
Re: details pane customization
I added links to the x2details.htm file <div class="pane" id="file"> <A id="s_12" href="@">Links</a>: <span>value</span> </div> for some reason I had to add it as an A (Changeable) property, when I make a b property is does not display, It seems it should be similar to the subitems property for fold...