mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 04:39:07 +00:00
Problem: Arabic support excludes Farsi.
Solution: Add Farsi support to the Arabic support. (Ali Gholami Rudi,
Ameretat Reith)
dc4fa190e7
Omit Test_shape_final_to_medial(): removed in later patches.
12 lines
234 B
C
12 lines
234 B
C
#ifndef NVIM_ARABIC_H
|
|
#define NVIM_ARABIC_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600)
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "arabic.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_ARABIC_H
|