[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

how to set up xterm to control your mouse double-click selection



 
    
how to set up xterm to control your mouse double-click selection
----------------------------------------------------------------

[terrence@localhost terrence]$ cat .Xdefaults 
#
# control your xterm double-click selection
# the string ``33:48,37:48,45-47:48,64:48''  indicates  that the  exclamation 
# mark, percent sign, dash, period, slash, and ampersand characters should be 
# treated the same way as  characters  and  numbers
# example: 
#         XTerm*charClass: 33:48,37:48,45-47:48,64:48
#
XTerm*charClass: 33-47:48,58-64:48,91-96:48,123-126:48

But I want to select all except space character.

[terrence@localhost terrence]$ man ascii

       Oct   Dec   Hex   Char  
       ----------------------

       040   32    20    SPACE
       041   33    21    !
       042   34    22    "
       043   35    23    #
       044   36    24    $
       045   37    25    %
       046   38    26    &
       047   39    27    '
       050   40    28    (
       051   41    29    )
       052   42    2A    *
       053   43    2B    +
       054   44    2C    ,
       055   45    2D    -
       056   46    2E    .
       057   47    2F    /

       072   58    3A    :
       073   59    3B    ;              
       074   60    3C    <              
       075   61    3D    =              
       076   62    3E    >              
       077   63    3F    ?        
       100   64    40    @

       133   91    5B    [
       134   92    5C    \   '\\'
       135   93    5D    ]
       136   94    5E    ^
       137   95    5F    _
       140   96    60    `

       173   123   7B    {
       174   124   7C    |
       175   125   7D    }
       176   126   7E    ~

[terrence@localhost terrence]$ grep xrdb .fvwm2rc
 + I exec xrdb -load $HOME/.Xdefaults
 +                       "Reset X defaults" Exec xrdb -load $HOME/.Xdefaults


Google