This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to use Column Editing in uVision3.*

Does anyone know how to use column mode for editing source code within uVision3 IDE??? I am used to using Jens where I could insert text in a column format defined by the start and stop of the drag of my cursor. I could then right click and insert defined text on all lines simultaneously starting where my cursor orignated to the end of the highlighted segment area in a column format. Can anyone help with this??? I know how to use the Alt key and mouse to highlight text in a column format, but I can find a way to enter text on multiple lines in a column format. This is very annoying.

Parents
  • If you post an example of what you start with, and what editing you need to do, we might be able to give you suggestions what editing we do for similar problems.

    If many things needs to work on a large set of variables, I normally use a struct. Then I can create a single variable of that struct at many places, instead of having to create a large number of variables again, and again.

    Often, when I see repetitions, I have a strong reason to repackage the code into reusable modules instead of having multiple sets of similar code.

Reply
  • If you post an example of what you start with, and what editing you need to do, we might be able to give you suggestions what editing we do for similar problems.

    If many things needs to work on a large set of variables, I normally use a struct. Then I can create a single variable of that struct at many places, instead of having to create a large number of variables again, and again.

    Often, when I see repetitions, I have a strong reason to repackage the code into reusable modules instead of having multiple sets of similar code.

Children