Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5954837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:01:41+00:00 2026-05-22T18:01:41+00:00

I’ve recently begun using Ctrl-LeftArrow and Ctrl-RightArrow in the IDE to move around on

  • 0

I’ve recently begun using Ctrl-LeftArrow and Ctrl-RightArrow in the IDE to move around on a line of source code (or, for that matter, in any Windows entry screen.) (And of course Ctrl-Shift-LeftArrow highlights the text. Also very helpful.)

I’m delighted at how often it saves me time because I don’t have to reach for the mouse.

It takes a bit of practice (as well as learning where your CTRL and arrow keys are so can hit them without looking down), but if you’re not using this method to move around Windows documents, I’d encourage you to try it!

Now, as a further speed-up, I would like to jump to the next instance of a single, specific character.

Many years ago I briefly used the “vi” editor, for which, as I recall, typing a lower case g and then a single character jumped to that character. And an upper case G did a “search again” (like ^L) on the previous single character searched for. Of course vi is moded, so this command was available. In the IDE, it would have to be a control character.

I think this would really speed up my moving around my source code in the IDE.

I’ve never done much with the tools available to enhance the IDE (Delphi 10 here). What tools might I use and how hard would it be to add this to the IDE?

Do any of the third-party IDE add-ins provide this kind of functionality?

TIA

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T18:01:42+00:00Added an answer on May 22, 2026 at 6:01 pm

    You can use CnPack IDE wizards, This wizards provide a pascal script engine that you can enhance the IDE by Pascal scripting, also they provide number of samples with source code.
    by this script engine you can search and modify the code in IDE editors as way you need.

    CnPack Wizards are Open source, then you can use it Free of charge.

    site : http://www.cnpack.org/index.php?lang=en
    for example the code below comes with CnPack this code will make comment the selected code in IDE editor

    {*******************************************************}
    {                                                       }
    {       Pascal Script Source File                       }
    {       Run by RemObjects Pascal Script in CnWizards    }
    {                                                       }
    {       Generated by CnPack IDE Wizards                 }
    {                                                       }
    {*******************************************************}
    
    program CommentCode;
    
    uses
      Windows, SysUtils, Classes, CnWizIdeUtils;
    
    var
      Lines: TStringList;
      i: Integer;
    begin
      Lines := TStringList.Create;
      try
        if IdeGetEditorSelectedLines(Lines) then
        begin
          for i := 0 to Lines.Count - 1 do
          begin
            Lines[i] := '//' + Lines[i];
          end;
          IdeSetEditorSelectedLines(Lines);
        end;
      finally
        Lines.Free;
      end;
    end.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
We're building an app, our first using Rails 3, and we're having to build
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I need a function that will clean a strings' special characters. I do NOT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.