CTRL-O : Go to [count] Older cursor position in jump list
CTRL-I : Go to [count] newer cursor position in jump list
:bf : Go to first buffer in buffer list.
:bn :Go to [N]th next buffer in buffer list.
gf : open in the same window ("goto file")
<c-w>f open in a new window (Ctrl-w f)
<c-w>gf open in a new tab (Ctrl-w gf)
Next tab: gt
Prior tab: gT
Numbered tab: nnngt \
View rpm
This file contains 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
sudo yum install openssl compat-openssl10 qca-qt5-ossl.x86_64 openssl-devel |
View RockyLinux8.txt
This file contains 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
1) gparted extend | |
2) | |
lvextend -l +100%FREE /dev/rl/root | |
3) | |
xfs_growfs /dev/mapper/rl-root | |
usefull command: | |
df -h | |
lvdisplay | |
fdisk -l |
View SBR.m
This file contains 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
A = zeros(10,21); | |
n = [1:10]; | |
% post cursor | |
for m = 1:3 | |
A(m, 11+n(m)) = 0.5; | |
A(m, 11-n(m)) = 0.5; | |
end | |
% one |
View README.txt
This file contains 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
a: -> variable scope | |
s: -> current script’s namespace | |
b: -> local to the current buffer |
View README.txt
This file contains 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
g:coc_snippet_next g:coc_snippet_next | |
Trigger key for going to the next snippet position, applied in insert | |
and select mode. | |
Only works when snippet session is activated. | |
Default: <C-j> | |
g:coc_snippet_prev g:coc_snippet_prev |
View install.sh
This file contains 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
git clone https://github.com/raytroop/svlangserver.git | |
cd svlangserver/ | |
npm pack | |
npm install -g imc-trading-svlangserver-0.3.4.tgz |
View vimkey.md
View run.sh
This file contains 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
vlib work | |
vlog -f filelist tb1.sv | |
# "-c": command line mode | |
vsim -voptargs=+acc -c -do "run 100ns; exit" work.tb1_ref |
View install.sh
This file contains 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
# gtk3 in Rocky Linux 8.5 | |
./configure --with-features=huge --enable-gui=gtk3 --enable-python3interp --prefix=/usr | |
make -j`nproc` | |
sudo make install |
View automatic_objection_raise_drop_in_uvm_1_2_ex.sv
This file contains 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
import uvm_pkg :: *; | |
class my_seq_item extends uvm_sequence_item; | |
rand logic [7:0] addr; | |
rand logic [7:0] data; | |
constraint addr_range_cn { | |
addr inside {[10:20]}; | |
} | |
constraint data_range_cn { |
NewerOlder