Questions tagged [remap]
257 questions
1
vote
1 answer
remap zsh terminal hotkey
I'm using the yadr dotfiles and ZSH on my mac. I use the delimiter "jj" to switch from insert to edit mode in vim, and I did that by putting
imap jj
in ~/.gvimrc. However, zsh / yadr also allows you to use vim hotkeys in terminal but adding…

pachun
- 926
- 2
- 10
- 26
1
vote
3 answers
_remap or URI Routing in codeigniter
I am currently looking into the PHP Framework Codeigniter and understand the main concepts so far until the Controllers section about _remapping. I have a understanding how _remapping overwrites the behaviour of controller methods over the URI eg…

Shimsham84
- 227
- 2
- 12
- 29
0
votes
1 answer
_remap function in codeigniter
I'm trying to use remap function in codeigniter but it doesn't work. I have a method called submit_me and I would transform it in submit-me in the URL. I read I can use _remap function but unfortunately I wasn't able to use it.
public function…

eng_mazzy
- 1,049
- 4
- 23
- 39
0
votes
2 answers
Route all actions of a controller except one in codeigniter
I am doing a project in CodeIgniter and I want to route all the urls of a particular controller to a specific action except one. For e.g.,
I want the url
myurl/mycontroller/myaction
to be handled by the action myaction but any other urls…

Suman
- 49
- 1
- 5
0
votes
1 answer
Win->Alt key remapping in AutoHotKey can not work well
I wrote a AutoHotKey script to remap LWin to LAlt
LWin::LAlt
LWin & Tab::AltTab
LWin+Tab works OK. But I found, for example in my emacs, LWin+b can not work as Alt+b. And if I disable this statment
LWin & Tab::AltTab
LWin+b works. But I know…

Yantao Xie
- 12,300
- 15
- 49
- 79
0
votes
0 answers
Keyboard remapping on Windows 10: How can I map a long-pressed Enter/Return key to a modifier key (e.g. Ctrl)?
I'd like to remap a long-press of an Enter/Return key to Ctrl(right), while keeping a short-press as Return.
I spend a fair amount of time in the terminal, particularly in Emacs in a WSL2 Ubuntu environment. Using long-press enter as Ctrl(right)…

Peter Davenport
- 1
- 1
0
votes
0 answers
How to use `ctrl+c` in Nvim if GNOME terminal SIGINT call was remaped to ctrl+x?
GNOME terminal SIGINT call was remaped to ctrl+x using stty intr ^X, and ctrl+c was maped to be 'copy'. In Neovim config I have vim.keymap.set("v", "", "\"+y", { noremap = true }) to be able to copy in nvim using ctrl+c. So now because of GNOME…

Vlad Mosienko
- 11
- 2
0
votes
0 answers
Having trouble writing regex for vector.dev
I'm having some trouble understanding VRL and using vector.dev for transforming Django logs and uploading them to Elasticsearch. I have a Django log file with the following format:
Django 2023-05-25 16:00:20,714 [WARNING] django.request: Not Found:…

Vineet Kumar Gupta
- 357
- 3
- 4
0
votes
0 answers
how can i remap the Fn key on my computer keyboard?
don't know how to remap Fn key
iam doing porgramming with my 60% keyboard and want to know the way to use fn key by pressing combination "caps+tab" ( can't modify by icue software after trying to do)
if anyone have any idea, please help me.
0
votes
0 answers
How to use nvidia vpi remap for distortion correction?
I'm trying to convert my OpenCV remap to use distortion correctionnvidia vpi remap.
My original code:
cv::Mat src = /* read image */;
cv::Mat dst(src.size(), src.type());
cv::Mat correction_x = /* image x correction */;
cv::Mat correction_y = /*…

lior.i
- 573
- 1
- 7
- 20
0
votes
1 answer
Assembly Remapping warning on Package Reference project
I have projects that have been converted to the package reference format. In the process, the web.config and packages.config files have been removed from the project and deleted from the file system. And yet, I am getting that annoying message to…

Gary Williams
- 289
- 2
- 5
0
votes
1 answer
Cannot remap gr in ideavim
I'm trying to create some mappings for my ideavim plugin in Rider -
I tried to map gr to action RenameElement, but for some reason, it takes no effect.
I want the mapping to be effective only in normal mode.
Here's my current mapping:
nmap gr…

MTomys
- 87
- 6
0
votes
1 answer
Remap structure parent object base on child array data and length object
I am trying remap structure data parent base on child array data and length. It's possible to do? Structure array it's good or i need change array object from backend?
There is no id in child arrays.
This is what i have done
this.arrays = [
{
…

Alkim Al
- 49
- 7
0
votes
1 answer
Autohotkey macro: trying to remap left-alt to left-win; left-win to left-win with a toggle
I am trying to remap Left Alt to Left Win and Left Win to Left Alt in AutoHotKey.
But I also want to have Shift + F11 to toggle these two remaps.
I know I can do:
LAlt::LWin
LWin::LAlt
but what I can't figure out is the toggle. The following…

Nik So
- 16,683
- 21
- 74
- 108
0
votes
1 answer
Use subarray data from json to create rows of associative arrays
I want to map my JSON response to specific array construction.
Here is my JSON data in short:
"code": 200,
"unit": null,
"data": [
{
"2022-11-16": 185.6159202
},
{
"2022-11-17": 204.31997631
},...
]
I need help to…

jakab003
- 11
- 2