Forum Replies Created

Viewing 25 posts - 3,551 through 3,575 (of 3,699 total)
  • Author
    Posts
  • in reply to: EmEditor Professional 6.00.4 RC #4259
    Yutaka Emura
    Keymaster

    I am sincerely sorry that was missed. And it will be missed in the release version of 6.00.4 because it is already fixed. I will make sure it will be included in the next minor version (that is after 6.00.4). Thank you for reminding me.

    in reply to: tagger (html auto-tagging plugin) #4257
    Yutaka Emura
    Keymaster

    Try this:

    document.selection.Text = "<b>" + document.selection.Text + "</b>";

    You can save this one line macro as something like “bold.jsee”. Then while this file is still active, click “Select This” on the Macros menu. When you open an HTML file, select text and click “Run Macro” on the toolbar or press F4. If you have multiple macros, you can assign keyboard shortcut from Keyboard Map on the Help menu.

    in reply to: tagger (html auto-tagging plugin) #4254
    Yutaka Emura
    Keymaster

    I reproduced this issue. It works fine when “No Wrap” is selected for “Wrap by” (you can select on the toolbar, or on the General tab of the Properties for Current Configuration). However, I am not the author of these plug-ins, and so I cannot fix them.

    You can probably do the same thing by writing a macro, and you can assign the macro to any keyboard shortcut.

    in reply to: why these dont work? #4251
    Yutaka Emura
    Keymaster

    1) and 4) Please see the complete explanation of the regular expressions at:

    http://www.emeditor.com/help/howto/search/search_regexp_syntax.htm

    http://www.emeditor.com/help/faq/search/search_reg_exp_ex.htm

    If you still have questions, you can post your questions at Regular Expressions forum if it is related to regular expression search.

    2) You can replace “. ” with “, “.

    3) eeFindReplaceOnlyWord – That is correct.

    in reply to: How i can change colors for any Syntax Files? #4250
    Yutaka Emura
    Keymaster

    You can change these colors frm the Display tab of the Configuration Properties although some item names are different. Please play around with the Properties, and you can figure these out.

    in reply to: why these dont work? #4247
    Yutaka Emura
    Keymaster

    [βγδζθκλμνξπρστφχψς]σ[βγδζθκλμνξπρστφχψς]

    should be

    ([βγδζθκλμνξπρστφχψς])σ([βγδζθκλμνξπρστφχψς])

    in reply to: Context Menu in Vista does not work #4245
    Yutaka Emura
    Keymaster

    Select Customize on the Tools menu, select Shortcut tab, and click More Shortcuts. In the Customize More Shortcuts dialog, click Add a shortcut to the Context Menu on Explorer. I realize there was an issue with the installer, and it will be fixed on the next minor version. Thanks!

    in reply to: Cleartype color text rendering bug perhaps? #4241
    Yutaka Emura
    Keymaster

    Please don’t ask me when. I will work on that probably on next major version. Thanks!

    in reply to: automatic paragraph formatting? #4234
    Yutaka Emura
    Keymaster

    There is no automatic way to do this, but you can do that manually after writing a paragraph. After selecting text, you can click right mouse button, select Convert Selection, and then Split Lines.

    in reply to: Count of found strings #4231
    Yutaka Emura
    Keymaster

    Replace All shows the number of matched strings in the status bar, but Find does not show that information. The reason for this is that EmEditor does not need to search the whole document when it can find one occurrence.

    To work around this, you can Replace All a string with a dummy string, and then undo immediately to find the number of strings. Alternatively, you can write a macro to do this.

    in reply to: Problem saving a Chinese file as UTF-8 #4229
    Yutaka Emura
    Keymaster

    I don’t believe it is EmEditor’s issue. Please let me know which hex editor you use, and exactly what you get in the hex editor. Please send me the samples and other detailed information at [email protected]

    in reply to: The Borderline of the Ruler #4228
    Yutaka Emura
    Keymaster

    I reproduced the issue. I will fix this on the next version. Thanks!

    in reply to: Bookmark Saving Problem #4222
    Yutaka Emura
    Keymaster

    I will fix this issue on the next minor version. Thanks!

    in reply to: The Borderline of the Ruler #4221
    Yutaka Emura
    Keymaster

    I am not sure how I can reproduce the issue. Can you please send me a screeen capture to [email protected] ? I would appreciate that. Thanks!

    in reply to: Trim Right plug-in (64-bit) ? #4218
    Yutaka Emura
    Keymaster

    There are no 64-bit plug-ins for these. However, Delete Spaces at End of Lines command is similar to the Trim Right command. You can customize your keyboard or menus so this command can be handy. In future versions, you will be able to write a macro and assign a macro to a Toolbar button.

    in reply to: delete spaces at the begining of the lines #4216
    Yutaka Emura
    Keymaster

    There is no command for that in EmEditor core.
    In replace dialog box, check “Use Regular Expressions”, and replace
    ^ +
    with empty string.

    in reply to: Folding code #4214
    Yutaka Emura
    Keymaster

    Did you try Outline plug-in? Or something else?

    in reply to: Help with Amharic font #4211
    Yutaka Emura
    Keymaster

    I am still working on it, but you didn’t send me a sample of the text as an attachment but only a screenshot. Would you please send me a sample in Word document and in text file? Also, what font do you use to display the text?

    in reply to: Trying to move from TextPad, things I am missing. #4209
    Yutaka Emura
    Keymaster

    1) – It would be nice if all the search results would group together under a single button at the beginning of the “Windows” toolbar. A drop down menu would allow me to select a specific search result.

    This is not currently possible within EmEditor Core, but it might be possible if one writes a plug-in.

    – Provide a command to close all open search results.

    You can use Close All command http://www.emeditor.com/help/cmd/file/exit_all.htm or Close All without Save http://www.emeditor.com/help/cmd/file/quit_all.htm.

    – When I specify a folder (and subfolders) to search, make the specification sticky – keep using it. I like to set the application folder as the search folder and then leave it there. I don’t like the way in which the current folder keeps getting selected – my app is much larger than that.

    You can uncheck “Use Current Folder as Default for Find in Files”.

    2) Select “Keyboard Map” on the Help menu, and you can customize the keyboard.

    3) You can double-click the edge of the toolbar to add the “Marks” button.

    4) Unfortunately, you cannot split. It might be something to consider in future.

    5) Make sure “Strip Path for Files in Current Folder” is checked on the File tab of the Customize dialog box. I know this does NOT solve relative paths as ..base. This might be something to consider in future.

    Thanks!

    in reply to: Home key #4206
    Yutaka Emura
    Keymaster

    Alt+Home can move to the column 1 in a line. In EmEditor Professional or Standard, you can customize keyboards so Home can move to the column 1.

    in reply to: Cleartype color text rendering bug perhaps? #4204
    Yutaka Emura
    Keymaster

    Of course, there is a chance! I am working on it!

    in reply to: Some features I'm missing… #4201
    Yutaka Emura
    Keymaster

    Sorry, I mean open documents, not column selection. Alternatively, you can create a macro to replace strings in open documents. If you cannot write a macro, I will write one for you, so please let me know.

    in reply to: Some features I'm missing… #4199
    Yutaka Emura
    Keymaster

    As I posted a similar message elsewhere, I really would like to implement replace string feature in column selection. I don’t know about the tab location, but I understand your request. I cannot make any promises. Thanks for your opinions!

    in reply to: Column Editing #4191
    Yutaka Emura
    Keymaster

    This is definitely something I would like to improve in future versions! Thanks!

    in reply to: Fill column of text #4190
    Yutaka Emura
    Keymaster

    You can select a column of text with EmEditor. However, it is not easy to replace the column portion with a certain text. This is an area that I want to improve in future versions. Thanks!

Viewing 25 posts - 3,551 through 3,575 (of 3,699 total)