Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy-paste layers #1954

Open
likern opened this issue Jan 9, 2023 · 11 comments
Open

Copy-paste layers #1954

likern opened this issue Jan 9, 2023 · 11 comments
Projects

Comments

@likern
Copy link

likern commented Jan 9, 2023

As a heavy user of layers I have some proposals to make life a little bit smoother.

  1. Allow to add custom names to layers. Let's say I've utilized fn4 layer because I've expected to use fn, fn2, fn3 for some other things. But it turns out they are now empty. Ideally I'd want either move all fn4settings to just fn (without breaking macros) or rename fn4 so that it's name becomes meaningful to what this layer does. It can be done only at UI layer (macroses continue to use fn4 internally) or even better to add this support to macroses.
  2. Allow to duplicate layer. So I can just duplicate easily all fn4 to new (let's say fn5 or fn3) layer.
  3. Allow to overwrite layer. If I have layers fn4 and fn3, allow to overwrite fn3 with what fn4 has, so I can experiment on a new layer. It's effectively like p. 2 - delete layer fn3 and then duplicate layer fn4 to fn3.
  4. Allow to sync layers (advanced, optional). It's like p.3 but doesn't touch keys of fn3 which has some (any) bindings. Only empty keys gets rebinded from fn4.
@IzK666
Copy link

IzK666 commented Jan 9, 2023

@likern I've created a tool to copy-paste layers which solves your problems 2 and 3.
https://izk666.github.io/UHK-Viewer-v5

@mondalaci
Copy link
Member

@likern Thanks for elaborating on your request. I'm thinking about an unintrusive UI that enables the requested features.

@IzK666 Excellent work! What's your use case?

@IzK666
Copy link

IzK666 commented Jan 11, 2023

Almost since the beginning I was using karel's firmware. I've a numpad on the right side of the fn layer and sometimes I want to fix this layer (double tap fn), but I don't want to loose the ability to use the arrow keys on the mod layer, so I created a new keymap with the fn and the base layers swapped.

Also, copy-pasting layers was very useful when you implemented the new layers, as I had some layers on other keymaps which I could use with macros and I wanted to transfer them to the new layers without assigning one by one all the keys.

And lastly, when I made a change on my default IZK keymap, I usually want to spread those changes to other specific keymaps I have.

@mondalaci
Copy link
Member

I've been thinking about the least obtrusive UI enabling the requested features. The customer layer names and the sync layers feature is not planned, but the rest would be possible.

At the end of the layer dropdown menu that contains the layer checkboxes, we'd add a separator followed by a "copy current layer to clipboard" and a "overwrite current layer with copied layer" menu item.

What do you think, guys?

@IzK666
Copy link

IzK666 commented Jan 13, 2023

As the copy-paste (copy-overwrite) is a function related to layers and the main goal is to keep the UI as clean as possible, it may work well. I can't think of a better place.

@mondalaci mondalaci changed the title Improve layer handling Copy-paste layers Jan 25, 2023
@mhantsch
Copy link

I've created a tool to copy-paste layers

Brilliant! Thanks for sharing this. Just what I was looking for.

Use cases:

  • copying my own layers to different keymaps
  • importing a keymap that someone shared to my own configuration

@mhantsch
Copy link

At the end of the layer dropdown menu that contains the layer checkboxes, we'd add a separator followed by a "copy current layer to clipboard" and a "overwrite current layer with copied layer" menu item.

Why go through a clipboard? When you copy a keymap you also do not use a clipboard, you just click the Duplicate button.

I would simply show a dropdown "Copy this layer to:" and then it lists keymaps, and when you hover over a keymap name it drops down all the layers. So you would click a "..." menu and follow a structure like:
... -> Copy layer -> QTY -> Fn3

Or just start with a "Copy layer" button next to the layer selection buttons.

@mhantsch
Copy link

Thinking about this again, I may be gold-plating this, but here it comes:

You want sync. But you only need this if you create an actual copy. What if you could simply reference (link) to an existing layer. Agent would copy that layer only when you "Save" to the keyboard, but not within Agent.

So, if you change the original layer, all the references will also update on the next "Save". The UI would show a referenced layer in gray, and a link to jump to the original (in case you want to edit it).

You could also decide to break the link, and create an actual copy, then they won't "sync" again as the layer won't be a reference anymore.

Thoughts?

@mondalaci
Copy link
Member

I wouldn't necessarily use the clipboard of the OS, but maybe an internal application-specific pseudo-clipboard.

A duplicate function is less general than an overwrite function. One can create a new layer and overwrite it, resulting in duplicating the copied layer.

I find the suggested multi-layer menu system hard to navigate, and I'm confident that the suggested copy-overwrite method is easier to navigate.

Making layer linking a first-class citizen would complicate the mental model of the layer system, and I don't believe this feature is widely requested enough to justify the added complexity. I'm sure many users would be confused, so I'd only allow layer linking via smart macros.

@mhantsch
Copy link

I thought about this again, and I think you are right: layer linking should be via smart macros, as this is an "absolutely expert"-mode feature.

Copying layers in Agent: I'm trying to understand how a typical use case would work. I've created my awesome super-special layer (or modified it), and now I want to copy it to 3 other keymaps. So I click "Copy layer". Then I navigate to the first of my other keymaps, select the layer I want to copy to, and click "Paste layer". Repeat for the other 2 keymaps. Correct?

@mondalaci
Copy link
Member

Yes, correct.

@mondalaci mondalaci added this to To be done in Agent todo Jun 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Agent todo
  
To be done
Development

No branches or pull requests

4 participants