Files
hop.nvim/lua/hop/mappings/fa.lua
yehuohan a75b915955 feat: support match mappings (#51)
* feat: support match mappings

* feat: add testcases for match_mappings

* added farsi mapping

* fix hop vertical

---------

Co-authored-by: mohsen <smoka7@hotmail.com>
2023-10-30 05:54:29 +00:00

61 lines
949 B
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

return {
['A'] = 'ا',
['B'] = 'ب',
['C'] = 'صثس',
['D'] = 'د',
['E'] = 'ی',
['F'] = 'ف',
['G'] = 'جگ',
['H'] = 'هح',
['I'] = 'ی',
['J'] = 'ج',
['K'] = 'ک',
['L'] = 'ل',
['M'] = 'م',
['N'] = 'ن',
['O'] = 'و',
['P'] = 'پ',
['Q'] = 'غق',
['R'] = 'ر',
['S'] = 'صثس',
['T'] = 'طت',
['V'] = 'و',
['W'] = 'و',
['Z'] = 'ظزض',
['a'] = 'ا',
['b'] = 'ب',
['c'] = 'صثس',
['d'] = 'د',
['e'] = 'ی',
['f'] = 'ف',
['g'] = 'جگ',
['h'] = 'هح',
['i'] = 'ی',
['j'] = 'ج',
['k'] = 'ک',
['l'] = 'ل',
['m'] = 'م',
['n'] = 'ن',
['o'] = 'و',
['p'] = 'پ',
['q'] = 'غق',
['r'] = 'ر',
['s'] = 'صثس',
['t'] = 'طت',
['v'] = 'و',
['w'] = 'و',
['z'] = 'ظزض',
['0'] = '۰',
['1'] = '۱',
['2'] = '۲',
['3'] = '۳',
['4'] = '۴',
['5'] = '۵',
['6'] = '۶',
['7'] = '۷',
['8'] = '۸',
['9'] = '۹',
}