Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Under review
Categories VSCODE
Created by Guest
Created on Apr 23, 2026

ISPF-style line commands

Being able to use ISPF-style Line/prefix area commands would not only make editing code easier, it would also make the switch for senior developers far more streamlined. These developers have used this functionality for decades and a tool that doesn't include this is, understandably, a non-starter for most of them.

These commands should be able to be entered in the line/prefix area in the editor to edit/modify code. Some (but not all) of these commands include;

'R' to repeat the current line

'R3' to repeat the current line 3 times

'D' to delete the current line

'M' to move the current line. Is paired with 'A' to move the line after the target line, or 'B' to move the line before the target line

'C' to copy the current line. Like 'M', is paired with 'A' or 'B' 

'CC' to copy a range of lines.  An additional 'CC' is used to terminate the copy select

 

Idea priority Medium
  • Guest
    May 13, 2026

    Stuff like the below is so incredibly not intuitive. The ISPF/EDIT line commands are intuitive. New developers will have no problem.

    Copy line down: alt-shift-arrow_down (up for up)

    - Move line down: alt-down (up for up)

    - Delete line ctrl-shift-k

    - ctrl-x for cutting the entire line if nothing is selected with ctrl-v for pasting it

    - selecting a range of line for copy/cut: shift-up_arrown or down


  • Guest
    Apr 29, 2026

    Thanks for submitting this idea. I understand that this would make the transition easier and we will evaluate that. 

    On the other hand this is a new developer experience and VS Code has all these capabilities as well, just using different shortcuts tailored to this editor. All shortcuts can be customized and there are extensions available to support recording macros as well. 

    Here some out of the box examples related to your list:

    - Copy line down: alt-shift-arrow_down (up for up)
    - Move line down: alt-down (up for up)
    - Delete line ctrl-shift-k
    - ctrl-x for cutting the entire line if nothing is selected with ctrl-v for pasting it
    - selecting a range of line for copy/cut: shift-up_arrown or down

    There are many more and perhaps you will find that VS Code is more powerful. ctrl-k,ctrl-s brings up a searchable list of all shortcuts.

    https://code.visualstudio.com/docs/configure/keybindings

    Also see this page with examples for multi-cursor editing: https://code.visualstudio.com/docs/editing/codebasics