How to select entire column (or row) using keyboard - ag-grid

Using ag-grid (trying on the demonstration page https://www.ag-grid.com/example.php) how can I use the keyboard to select an entire column?
You can press (on the demo) Shift and down arrow and go all the way down, but it's not practical for 1000s of rows. And as soon as you press Control, the selected cell does become the most bottom cell, but you loose the selection (as if Shift wasn't pressed).
If I was in Excel, I would select the top cell in a column, press Control+Shift+Down arrow, the whole column is selected, I can now do Control+C to copy.
I have seen this article, that adds a new menu item to do it How to select column data in ag-grid . I know I could assign a shortcut to that action too, but ideally I need a keyboard way using the Control (Command on a mac) key.

There's a not-so-straightforward way of doing this.
Click on the top most cell of the column you want to select
Do a Control + A (or Command + A for macOS) to select all of the grid
Now press Shift+ALT+(Left Arrow and/or Right Arrow keys or Shift+Option+(Left Arrow and/or Right Arrow keys in Mac OS
This should work

Related

read only column pgadmin4 : Can't copy result [duplicate]

I run a single SQL request on PgAdmin 4.6.
select nom, sectionnaf, sum(nombresalaries) as nombre_salaries from activites_des_communes where epci = '200069532' group by nom, sectionnaf
order by nom, nombre_salaries desc;
it displays the accurate columns and results on Data Output.
Data Output allows me to select all the 400 rows displayed with an arrow on the top left corner, but not to copy them into clipboard or do anything else with them. Any click with the mouse has no effect (right click or left click) and I can't figure how it is intented to work.
Data Output allows you to select all the rows displayed with an arrow on the top left corner, Now you need to click on Copy button to copy them into Clipboard.
According to the documentation:
The Query Tool allows you to:
[...]
Save the data displayed in the output panel to a CSV file.
You have to use menu items on the main menu of the Query Tool bar for this.

Replace row header with images

I am working on a worksheet which has long header names. I want to display table compactly using icon images instead of using header labels. Say I have a column named "Population Density" in a table. I would like a population icon to show up instead of full label.
Probably the closest you could come with this is using Unicode Emoji in a column alias.
For measure values, right click the header and click "Edit Alias", then paste the unicode emoji into the text box.
For dimensions, right click the pill and click "Edit in Shelf". Move the cursor to the beginning of the line and press Shift+Enter to add a new line above, then press the up arrow. Type // on the new line, paste the selected unicode emoji, and hit Enter.

Sublime Text autocomplete left column keyboard shortcut

The list of Sublime Text autocompletions can have two columns. If I press tab to select an autocompletion, it always uses the right column. What if I want to autocomplete using the left column?
This question is not language specific, but for example if I type "B2J" I get the suggestion "B2JointDef - box2D.dynamics.joints.B2JointDef". It's what I want, but I already imported "box2D.dynamics.joints.*" so I just need "B2JointDef". However if I press tab or enter, I get the whole "box2D.dynamics.joints.B2JointDef".
Do I need to use a more intelligent autocomplete package, or is there some way to get the left column?
Use SublimeJEDI. It should know that you have imported the package

Sublimerge: 'Merge: left to right' grayed out, but 'Merge all: left to right' available

I'm using Sublime Text 3 with Sublimerge to compare files. I'm comparing files with the clipboard and I want to copy differences from left to right. I can see in the Sublimerge context menu that Merge:Left to right is unavailable/grayed out. However Merge all:Left to right is available to select.
How do I enable the option to Merge:Left to right?
This option requires at least one change to be selected. Then it will become enabled. To select a change do one of the following:
Use context menu: Sublimerge -> Go to Next Change
Press 'ctrl' + 'alt' + '+'
Hold 'ctrl' + 'alt' and left click on one or more changes

AutoHotKey: How to select listbox item by it's text

Question in subj.
I have window, and I have ListBox on it. I wanna find particular list item and make it selected.
I've read this
http://www.autohotkey.com/board/topic/17534-selecting-an-item-in-a-listbox/
but it doesn't work - my list dont change selection on key pressing.
So, I need to find item by text in some column and then select it (by clicking or smth else).