This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Requires 'sxhkd' and 'xdotool' to both be installed. | |
| # Start 'sxhkd' for this to actually become active | |
| # Config should be installed into this file : | |
| # ./config/sxhkd/sxhkdrc | |
| # | |
| # Released under the GNU/GPL v3 or later : | |
| # https://en.wikipedia.org/wiki/GNU_General_Public_License | |
| # | |
| # Unintended operation and unexpected issues are not my responsobility | |
| # use this script and settings and these tools at your own risk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun! s:GroffConceal(group,pat,cchar) | |
| exe 'syn match '.a:group." '".a:pat."' contained conceal cchar=".a:cchar | |
| endfun | |
| if exists('g:groff_greek') | |
| call s:GroffConceal('roffGreek' ,'\<alpha\>' ,'α') | |
| call s:GroffConceal('roffGreek' ,'\<beta\>' ,'β') | |
| call s:GroffConceal('roffGreek' ,'\<gamma\>' ,'γ') | |
| call s:GroffConceal('roffGreek' ,'\<delta\>' ,'δ') | |
| call s:GroffConceal('roffGreek' ,'\<epsilon\>' ,'ϵ') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !Copyright 2024 Paolo Lampitella | |
| !This code is licensed under the terms of the MIT license | |
| MODULE mod_fint | |
| IMPLICIT NONE | |
| INTEGER, PARAMETER :: IP4 = SELECTED_INT_KIND(9) | |
| INTEGER, PARAMETER :: WP = SELECTED_REAL_KIND(15,307) | |
| CONTAINS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program test | |
| integer :: i | |
| open(1, file='test.dat', access='stream', form='unformatted') | |
| do i = 1, 10 | |
| write(1) i | |
| write(1) dble(i)**2 | |
| end do | |
| close(1) | |
| end program test |