aboutsummaryrefslogblamecommitdiff
path: root/src/shared/settings/properties.js
blob: 4bda8d6186cca074b9a8163eed60512102ec65af (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                  
               
                      
                          
                         
  
                                        
                  
                                          
                      
                    

                           
// describe types of a propety as:
//    mystr: 'string',
//    mynum: 'number',
//    mybool: 'boolean',
const types = {
  hintchars: 'string',
  smoothscroll: 'boolean',
  adjacenttab: 'boolean',
};

// describe default values of a property
const defaults = {
  hintchars: 'abcdefghijklmnopqrstuvwxyz',
  smoothscroll: false,
  adjacenttab: true,
};

export { types, defaults };