Improve Goto Symbol popup contents
[geany-mirror.git] / data / filetypes.CUDA.conf
blobe6e564a9f34be541e44aac0de76f0c27d221c2bc
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling=C]
4 [keywords]
5 # all items must be in one line
6 primary=alignas alignof and and_eq asm auto bitand bitor bool break case catch char char16_t char32_t class compl const const_cast constexpr continue decltype default delete do double dynamic_cast else enum explicit export extern false final float for friend goto if inline int int8_t int16_t int32_t int64_t long mutable namespace new noexcept not not_eq nullptr operator or or_eq override private protected ptrdiff_t public register reinterpret_cast return short signed sizeof size_t static static_assert static_cast struct switch template this thread_local throw true try typedef typeid typename union unsigned using virtual void volatile wchar_t while xor xor_eq
8 # CUDA keywords set as secondary keywords
9 secondary=__device__ __global__ __shared__ __host__ __constant__ gridDim blockIdx blockDim threadIdx warpSize <<< >>> dim3  char1 uchar1 char2 uchar2 char3 uchar3 char4 uchar4 short1 ushort1 short2 ushort2 short3 ushort3 short4 ushort4 int1 uint1 int2 uint2 int3 uint3 int4 uint4 long1 ulong1 long2 ulong2 long3 ulong3 long4 ulong4 float1 float2 float3 float4  double1 double2
11 # these are the Doxygen keywords
12 docComment=a addindex addtogroup anchor arg attention author authors b brief bug c callergraph callgraph category cite class code cond copybrief copydetails copydoc copyright date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endinternal endlatexonly endlink endmanonly endmsc endrtfonly endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc mscfile n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref related relatedalso relates relatesalso remark remarks result return returns retval rtfonly sa section see short showinitializer since skip skipline snippet struct subpage subsection subsubsection tableofcontents test throw throws todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem
14 [lexer_properties]
15 styling.within.preprocessor=1
16 lexer.cpp.track.preprocessor=0
17 preprocessor.symbol.$(file.patterns.cpp)=#
18 preprocessor.start.$(file.patterns.cpp)=if ifdef ifndef
19 preprocessor.middle.$(file.patterns.cpp)=else elif
20 preprocessor.end.$(file.patterns.cpp)=endif
22 [settings]
23 lexer_filetype=C
24 tag_parser=C++
26 # default extension used when saving files
27 extension=cu
29 # the following characters are these which a "word" can contains, see documentation
30 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
32 # single comments, like # in this file
33 comment_single=//
34 # multiline comments
35 comment_open=/*
36 comment_close=*/
38 # set to false if a comment character/string should start at column 0 of a line, true uses any
39 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
40         #command_example();
41 # setting to false would generate this
42 #       command_example();
43 # This setting works only for single line comments
44 comment_use_indent=true
46 # context action command (please see Geany's main documentation for details)
47 context_action_cmd=
49 [indentation]
50 #width=4
51 # 0 is spaces, 1 is tabs, 2 is tab & spaces
52 #type=1
54 [build_settings]
55 # %f will be replaced by the complete filename
56 # %e will be replaced by the filename without extension
57 # (use only one of it at one time)
58 compiler=nvcc -c "%f"
59 linker=nvcc -o "%e" "%f"
60 run_cmd="./%e"