Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
refactor: rename mapper to vm
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed Nov 4, 2022
1 parent 64c13e4 commit 075b31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hyprkeys.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ func readHyprlandConfig() ([]string, []string, []string, map[string]string) {
defer file.Close()

scanner := bufio.NewScanner(file)
m := make(map[string]string)
vm := make(map[string]string)

var kbKeybinds []string
var mKeybinds []string
var variables []string
var variableMap = m
var variableMap = vm

for scanner.Scan() {
line := scanner.Text()
Expand Down

0 comments on commit 075b31e

Please sign in to comment.