from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81630

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->VI

3. Practice Lesson #1


You should have a practice file called vilesson.txt in
your home directory. We will use it now:


$ vi vilesson.txt

Please note that in this lesson we will only practice the very
basics of vi. It is up to you to explore the editor further using
the provided cheat-sheet.


General Rules



  1. Do not use arrow keys to move the cursor
  2. Do not use PgDn or PgUp keys
  3. Do not use Home or End keys

If you accidently violate any of the above rules and cause strange
characters to be inserted into the file, or if anything else
unexpected happens, and you don't know how to correct it, press
Escape followed with :q! (quit without
saving
command). Then open the file again and continue the
lesson.


All exercises in Practice Lesson #1 consist of
Actions (marked here as A:) and Verifications
(marked here as V:).


Moving Around Text


First we will move around the file line by line.



A:
Press j three times.
V:
Cursor should now be resting on the fourth line.
A:
Type 8j
V:
Cursor should have moved 8 lines down to "Mr. John Bigfoot".
A:
Go up 2 lines by pressing k twice. Now go up 7 more
lines using the combination of a number and the k command.
V:
Your cursor should be on the "Big Town" line.

There is a way to move to a specific line number.



A:
Type :set number and press Enter key.
V:
Line numbers should be displayed at the left margin.
A:
Type 33G
V:
Your cursor should be resting at line #33.
A:
Type :set nonumber
V:
Line numbers should disappear.
A:
Go to the first line in the file by typing 1G (as in
line #1, GO).
V:
Your cursor should be at the top of the file.
A:
To go to the last line in the file, you do not need to specify
the line number at all (it would often be inconvenient). Type
G
V:
Cursor should be at the last line of the file.

To move sideways we will use command l (letter el)
to move right, and command h to move left. First go
back to the beginning of the line "40 PR Special (Pink Squirrel)".
When you're done, continue with the exercise.



A:
Press l three times.
V:
Cursor should be on character "P".
A:
Type 10l (number 10 followed by letter el)
V:
Cursor should be resting on white space between words "Special"
and "Pink".
A:
Press h twice.
V:
Cursor should be on character "a" of the letter "Special".
A:
Now go directly to the end of the line by pressing $
(dollar sign).
V:
Cursor should be at the end of the line.
A:
Go back to the beginning of the line by pressing 0 (zero).
V:
Cursor should be at the beginning of the line.

We can also move using words, sentences and paragraphs as delimiters.
First make sure your cursor is still at the beginning of the line
"40 PR Special (Pink Squirrel)".



A:
Press w (as in word) twice.
V:
Cursor should be at the beginning of the word "Special".
A:
Type 3w
V:
Cursor should be at the beginning of the word "Squirrel".
Note that vi knows that "(" is not a part of the word, and it
counts those elements separately.
A:
Go two paragraphs down by pressing 2} (right curly
brace).
V:
Cursor should be resting before the beginning of the
paragraph "We are looking forward [...]"
A:
Go to the previous sentence by pressing ( (left
parenthesis).
V:
Cursor should be on the word "We". Note:
Using sentences as delimiters is known to be broken in a couple
of vi implementations.
A:
Move to the end of the word by pressing e (as in end
of the word
).
V:
Cursor should be resting on the letter "e".
A:
To move one page forward, press Ctrl-F
V:
Depending on your terminal definition, the cursor should have
moved an appropriate number of lines forward. In our case, since
the file is short, you are most likely at the last line.
A:
Press Ctrl-B to go back one page.
V:
Cursor should have moved up one terminal page. Note:
On some older DOS versions of vi this command might scroll up the
page without moving the cursor. If this happens to you, press
Ctrl-B again.

Searching


Make sure your cursor is at the top of the file, then proceed
with the exercise.



A:
Press /, type your and press Enter
V:
Cursor should be on the word "your" in the middle of the sentence
"Thank you for placing your order with us".
A:
Press n (for 'next').
V:
Cursor should be on the word "your" before words "March 25".
A:
Press G to go to the end of the file.
V:
Cursor should be at the bottom of the file.
A:
Press ?, type ( and press Enter
V:
Your cursor should be on the left parenthesis before the word
"Moscow".

Deleting, Copying, And Pasting


We will practice commands d (delete),
p and P (paste), and the command
. (period, which means repeat last edit).
Make sure your cursor is still on the left paren before the word
"Moscow".



A:
Type d$
V:
You have just asked to delete to the end of line: d for
delete and $ for end of line (to
indicate the scope of the operation). Entire description of the
"Stock Option" drink should have disappeared.
A:
Press n to find the next instance of "(" (that was
our last search).
V:
Cursor should be on the left paren before the word "Ping-Pong".
A:
Repeat the previous edit (delete to end of the line) by pressing
. (period).
V:
Description of the "Day in TAC" drink should have disappeared.
A:
Press n again followed by . (period).
V:
Description of the "PR Special" drink should have disappeared.
A:
Repeat the last operation.
V:
All of the descriptions of the drinks (please ignore the fact that
some of them are intentionally wrong) should be gone.
A:
Exit the file without saving it by typing command :q!
V:
You should be at the UNIX shell command prompt.

Bring the file back into the editor with the command:



$ vi vilesson.txt

By now you have noticed that one of the drinks is really an appetizer.
We need to move it into the right place.



A:
Type /Early and press Enter
V:
Cursor should be on the line with "Early Release".
A:
Delete the whole line by pressing d twice.
V:
Line should be gone.
A:
Press P (upper case).
V:
The line you deleted is pasted above "Sales Engineer Special".
A:
Now press u for undo, remember which line
your cursor is on and then press p (lowercase).
V:
The line you deleted is pasted below your cursor line.

Note that uppercase P pastes text above the cursor line,
lowercase p pastes below.


If you only wish to copy the original line(s) without deleting at
the same time, use the yank command.



A:
Move you cursor to the second line, type 3Y, move your
cursor all the way down by pressing G and press
p
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now press u to undo the changes.
V:
The lines you have pasted should have disappeared.

The above operation could also be accomplished using lowercase
yank and the symbol for the object to be copied.



A:
Move your cursor back to line 2. Type commands y}Gp
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now undo the changes.
V:
The lines you have pasted should have disappeared.

Replacing Text


You have just noticed that the name of the addressee is spelled
"Bigfoot". It should be "Bigshot". You will now globally change
it.



A:
Press : (vi command line), type
%s/Bigfoot/Bigshot/g and press Enter
V:
All instances of "Bigfoot" should have changed to "Bigshot".

What you have typed means command line (:), the whole
file
(%), substitute (s), Bigfoot with Bigshot
(/Bigfoot/Bigshot/), any occurance on a line (g). Without
the last g, the substitution would be performed only
once per line. In our case it would not make any difference, but
it is a cheap insurance to take. The character % at
the beginning of the command means literally from the first to
the last line
. You could specify a narrower range of lines.
:13,19s/Bigfoot/Bigshot/ would perform the substitution
on a range of lines 13 through 19.


It is possible to replace specific number of words with whatever
text we wish to type in.



A:
Press / and then type send and press
Enter. Now type cw (for change word),
type be delivering and press Escape
V:
The word "send" should have been replaced with "be delivering".
Note that only the word "send" was replaced.

You could also specify
multiple words to be replaced, for example c3w. This
has a distinct advantage over more conventional overwriting because
it has clear word-boundary delimiters.


Overwriting one character, however, can be useful as a quick
correction. Note that the word "Febeuary" is misspelled.



A:
Place your cursor on the second "e" in that word and press r
twice.
V:
The word "Febeuary" should now read "February".

The first time you pressed r above it meant replace,
the second time with letter r. You do not need to finish
the command with Escape because there is an understanding
that only one letter will be input. This was single-letter
overwriting. Should you wish to overwrite continuously, you would
use the letter R instead. You would also need to finish
the command by pressing Escape since the number of
characters to be overwritten is not pre-determined.


Changing Case


Notice that the word "serVEd" has improperly capitalized two letters.



A:
Go to the word "serVEd", place your cursor over the first miscapitalized
letter and press ~ (tilde) twice.
V:
The word should now read "served".

Saving Files


It is time to save the changes.



A:
Press : (for command line), type w
(for write) and press Enter
V:
The changes have been saved. There could be a one-line note at
the bottom of the screen saying, "vilesson.txt: 48 lines, 954
characters" (or something similar) to confirm a successful save.

There are other ways to save files, so please read the cheat-sheet
for the command summary.


Inserting Text


There are three parts to entering text:



  1. input command (A, I, O, R, a, c, i, o)
  2. text to be inserted (anything you wish)
  3. termination of input command (Escape key)

The third part is always the same. All text input commands
listed above are terminated with Escape key. Part one
is where the variation occurs.



A:
Move the cursor to the beginning of line 38. Press i
and start typing text. When you finish the sentence, press
Escape.
V:
As you have noticed, i inserts text before the
letter the cursor rests on.

To enter text after the cursor, you would use a
(append) command. Now move your cursor to the second line
in the table listing drinks to be delivered.



A:
Press o.
V:
A new blank line should have been opened below the cursor line.
A:
Type some text. Press Escape.
V:
Text should have been entered on the blank line.
A:
Press u.
V:
Text you entered should have disappeared.
A:
Now press capital O, type some text and press
Escape.
V:
Text should have been entered on the line above the former cursor
line.

Note that the capitalized version of the same command opens the
line for text input above the cursor line. Note similarities
to the p and P commands. Press u.


Make sure you are approximately in the middle of the line of text (any
line).



A:
Press I (the capitalized version of the insert
command). Start typing text. Press Escape.
V:
Text should have been entered at the beginning of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.
A:
Now press A (the capitalized version of the append
command, type some text and terminate the command.
V:
Text should have been appended to the end of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.

Exiting file


You can exit file with or without saving changes.



A:
To save and exit, type :wq and press Enter.
V:
File has been saved and you should be at the UNIX command prompt.
A:
Open the file using vi vileson.txt and make some
changes (if you are entering text, please remember to terminate
the text input command with Escape). Type :q
and press Enter.
V:
Normally that would allow you to quit file, but since you have
changed the file, vi most likely will ask you to either save or
use bang (! command) to overwrite the protection.
A:
Type :q! and press Enter.
V:
You should be back at the UNIX command prompt.

Note that bang also works in conjunction with :w
and :wq commands.


End Of Practice Lesson #1



/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: average rating: 1.2 (24 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-10-22
Tensile - 7.0.2
Ebuild name:

dev-util/Tensile-7.0.2

Description

A tool for creating a benchmark-driven GEMMs and tensor contractions code

Added to portage

2025-10-22

amdsmi - 7.0.2
Ebuild name:

dev-util/amdsmi-7.0.2

Description

AMD System Management Interface for managing and monitoring GPUs

Added to portage

2025-10-22

aotriton-bin - 0.11b
Ebuild name:

sci-libs/aotriton-bin-0.11b

Description

Ahead of Time (AOT) Triton Math Library (binary package)

Added to portage

2025-10-22

clang - 21.1.4
Ebuild name:

dev-python/clang-21.1.4

Description

Python bindings for llvm-core/clang

Added to portage

2025-10-22

clang - 21.1.4
Ebuild name:

llvm-core/clang-21.1.4

Description

C language family frontend for LLVM

Added to portage

2025-10-22

clang-common - 21.1.4
Ebuild name:

llvm-core/clang-common-21.1.4

Description

Common files shared between multiple slots of clang

Added to portage

2025-10-22

clang-runtime - 21.1.4
Ebuild name:

llvm-runtimes/clang-runtime-21.1.4

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-10-22

compiler-rt - 21.1.4
Ebuild name:

llvm-runtimes/compiler-rt-21.1.4

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-10-22

compiler-rt-sanitizers - 21.1.4
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.4

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2025-10-22

composable-kernel - 7.0.2
Ebuild name:

sci-libs/composable-kernel-7.0.2

Description

High Performance Composable Kernel for AMD GPUs

Added to portage

2025-10-22

flang - 21.1.4
Ebuild name:

llvm-core/flang-21.1.4

Description

LLVM's Fortran frontend

Added to portage

2025-10-22

flang-rt - 21.1.4
Ebuild name:

llvm-runtimes/flang-rt-21.1.4

Description

LLVM's Fortran runtime

Added to portage

2025-10-22

hip - 7.0.2
Ebuild name:

dev-util/hip-7.0.2

Description

C++ Heterogeneous-Compute Interface for Portability

Added to portage

2025-10-22

hipBLAS - 7.0.2
Ebuild name:

sci-libs/hipBLAS-7.0.2

Description

ROCm BLAS marshalling library

Added to portage

2025-10-22

hipcc - 7.0.2
Ebuild name:

dev-util/hipcc-7.0.2

Description

Radeon Open Compute hipcc

Added to portage

2025-10-22

hipify-clang - 7.0.2
Ebuild name:

dev-util/hipify-clang-7.0.2

Description

A set of tools to translate CUDA source code into portable HIP C++

Added to portage

2025-10-22

hipother - 7.0.2
Ebuild name:

dev-libs/hipother-7.0.2

Description

ROCclr runtime implementation for non-AMD HIP platforms, like NVIDIA

Added to portage

2025-10-22

joplin-desktop - 3.5.5
Ebuild name:

app-office/joplin-desktop-3.5.5

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2025-10-22

libclc - 21.1.4
Ebuild name:

llvm-core/libclc-21.1.4

Description

OpenCL C library

Added to portage

2025-10-22

libcxx - 21.1.4
Ebuild name:

llvm-runtimes/libcxx-21.1.4

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2025-10-22

libcxxabi - 21.1.4
Ebuild name:

llvm-runtimes/libcxxabi-21.1.4

Description

Low level support for a standard C++ library

Added to portage

2025-10-22

libgcc - 21.1.4
Ebuild name:

llvm-runtimes/libgcc-21.1.4

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-10-22

libpcre2 - 10.47
Ebuild name:

dev-libs/libpcre2-10.47

Description

Perl-compatible regular expression library

Added to portage

2025-10-22

libunwind - 21.1.4
Ebuild name:

llvm-runtimes/libunwind-21.1.4

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-10-22

lit - 21.1.4
Ebuild name:

dev-python/lit-21.1.4

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-10-22

lld - 21.1.4
Ebuild name:

llvm-core/lld-21.1.4

Description

The LLVM linker (link editor)

Added to portage

2025-10-22

lldb - 21.1.4
Ebuild name:

llvm-core/lldb-21.1.4

Description

The LLVM debugger

Added to portage

2025-10-22

llvm - 21.1.4
Ebuild name:

dev-ml/llvm-21.1.4

Description

OCaml bindings for LLVM

Added to portage

2025-10-22

llvm - 21.1.4
Ebuild name:

llvm-core/llvm-21.1.4

Description

Low Level Virtual Machine

Added to portage

2025-10-22

llvm-common - 21.1.4
Ebuild name:

llvm-core/llvm-common-21.1.4

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-10-22

mlir - 21.1.4
Ebuild name:

llvm-core/mlir-21.1.4

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-10-22

offload - 21.1.4
Ebuild name:

llvm-runtimes/offload-21.1.4

Description

OpenMP offloading support

Added to portage

2025-10-22

openmp - 21.1.4
Ebuild name:

llvm-runtimes/openmp-21.1.4

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-10-22

polly - 21.1.4
Ebuild name:

llvm-core/polly-21.1.4

Description

Polyhedral optimizations for LLVM

Added to portage

2025-10-22

pwsh - 7.5.4
Ebuild name:

app-shells/pwsh-7.5.4

Description

Cross-platform automation and configuration tool

Added to portage

2025-10-22

qdmr - 0.13.1
Ebuild name:

net-wireless/qdmr-0.13.1

Description

GUI application for configuring and programming cheap DMR radios

Added to portage

2025-10-22

rccl - 7.0.2
Ebuild name:

dev-libs/rccl-7.0.2

Description

ROCm Communication Collectives Library (RCCL)

Added to portage

2025-10-22

rclone - 1.71.2
Ebuild name:

net-misc/rclone-1.71.2

Description

A program to sync files to and from various cloud storage providers

Added to portage

2025-10-22

rocdbgapi - 7.0.2
Ebuild name:

dev-libs/rocdbgapi-7.0.2

Description

AMD Debugger API

Added to portage

2025-10-22

rocm-cmake - 7.0.2
Ebuild name:

dev-build/rocm-cmake-7.0.2

Description

Radeon Open Compute CMake Modules

Added to portage

2025-10-22

rocm-comgr - 7.0.2
Ebuild name:

dev-libs/rocm-comgr-7.0.2

Description

Radeon Open Compute Code Object Manager

Added to portage

2025-10-22

rocm-core - 7.0.2
Ebuild name:

dev-libs/rocm-core-7.0.2

Description

Library that provides ROCm release version and install path information

Added to portage

2025-10-22

rocm-device-libs - 7.0.2
Ebuild name:

dev-libs/rocm-device-libs-7.0.2

Description

Radeon Open Compute Device Libraries

Added to portage

2025-10-22

rocm-opencl-runtime - 7.0.2
Ebuild name:

dev-libs/rocm-opencl-runtime-7.0.2

Description

Radeon Open Compute OpenCL Compatible Runtime

Added to portage

2025-10-22

rocm-smi - 7.0.2
Ebuild name:

dev-util/rocm-smi-7.0.2

Description

ROCm System Management Interface Library

Added to portage

2025-10-22

rocm_bandwidth_test - 7.0.2
Ebuild name:

dev-util/rocm_bandwidth_test-7.0.2

Description

Bandwidth test for ROCm

Added to portage

2025-10-22

rocminfo - 7.0.2
Ebuild name:

dev-util/rocminfo-7.0.2

Description

ROCm Application for Reporting System Info

Added to portage

2025-10-22

rocr-runtime - 7.0.2
Ebuild name:

dev-libs/rocr-runtime-7.0.2

Description

Radeon Open Compute Runtime

Added to portage

2025-10-22

roct-thunk-interface - 7.0.2
Ebuild name:

dev-libs/roct-thunk-interface-7.0.2

Description

Radeon Open Compute Thunk Interface

Added to portage

2025-10-22

roctracer - 7.0.2
Ebuild name:

dev-util/roctracer-7.0.2

Description

Callback/Activity Library for Performance tracing AMD GPU's

Added to portage

2025-10-22

2025-10-21
Convert-Binary-C - 0.860.0
Ebuild name:

dev-perl/Convert-Binary-C-0.860.0

Description

Binary Data Conversion using C Types

Added to portage

2025-10-21

YAML-Syck - 1.360.0
Ebuild name:

dev-perl/YAML-Syck-1.360.0

Description

Fast, lightweight YAML loader and dumper

Added to portage

2025-10-21

aiohttp - 3.13.1
Ebuild name:

dev-python/aiohttp-3.13.1

Description

HTTP client/server for asyncio

Added to portage

2025-10-21

alacritty - 0.16.1
Ebuild name:

x11-terms/alacritty-0.16.1

Description

GPU-accelerated terminal emulator

Added to portage

2025-10-21

aurorae - 6.5.0
Ebuild name:

kde-plasma/aurorae-6.5.0

Description

Themeable window decoration for KWin

Added to portage

2025-10-21

backports-zstd - 1.0.0-r1
Ebuild name:

dev-python/backports-zstd-1.0.0-r1

Description

Backport of PEP-784 adding Zstandard to the standard library

Added to portage

2025-10-21

bluedevil - 6.5.0
Ebuild name:

kde-plasma/bluedevil-6.5.0

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-10-21

bmaptool - 3.9.0
Ebuild name:

sys-block/bmaptool-3.9.0

Description

The better dd for embedded projects, based on block maps

Added to portage

2025-10-21

breeze - 6.5.0
Ebuild name:

kde-plasma/breeze-6.5.0

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-10-21

breeze-grub - 6.5.0
Ebuild name:

kde-plasma/breeze-grub-6.5.0

Description

Breeze theme for GRUB

Added to portage

2025-10-21

breeze-gtk - 6.5.0
Ebuild name:

kde-plasma/breeze-gtk-6.5.0

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-10-21

breeze-plymouth - 6.5.0
Ebuild name:

kde-plasma/breeze-plymouth-6.5.0

Description

Breeze theme for Plymouth

Added to portage

2025-10-21

calver - 2025.10.20
Ebuild name:

dev-python/calver-2025.10.20

Description

Setuptools extension for CalVer package versions

Added to portage

2025-10-21

click - 8.3.1
Ebuild name:

dev-python/click-8.3.1

Description

A Python package for creating beautiful command line interfaces

Added to portage

2025-10-21

cython - 3.1.5
Ebuild name:

dev-python/cython-3.1.5

Description

A Python to C compiler

Added to portage

2025-10-21

discover - 6.5.0
Ebuild name:

kde-plasma/discover-6.5.0

Description

KDE Plasma resources management GUI

Added to portage

2025-10-21

drkonqi - 6.5.0
Ebuild name:

kde-plasma/drkonqi-6.5.0

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-10-21

edbrowse - 3.8.13
Ebuild name:

app-accessibility/edbrowse-3.8.13

Description

Combination editor, browser, and mail client that is 100% text ba

Added to portage

2025-10-21

ffmpegthumbnailer - 2.2.3
Ebuild name:

media-video/ffmpegthumbnailer-2.2.3

Description

Lightweight video thumbnailer that can be used by file managers

Added to portage

2025-10-21

flask-compress - 1.20
Ebuild name:

dev-python/flask-compress-1.20

Description

Compress responses in your Flask app with gzip

Added to portage

2025-10-21

flatpak-kcm - 6.5.0
Ebuild name:

kde-plasma/flatpak-kcm-6.5.0

Description

Flatpak Permissions Management KCM

Added to portage

2025-10-21

fsautocomplete - 0.80.0
Ebuild name:

dev-dotnet/fsautocomplete-0.80.0

Description

F language server using the Language Server Protocol

Added to portage

2025-10-21

googleapis-common-protos - 1.71.0
Ebuild name:

dev-python/googleapis-common-protos-1.71.0

Description

Python classes generated from the common protos in the g

Added to portage

2025-10-21

hypothesis - 6.142.2
Ebuild name:

dev-python/hypothesis-6.142.2

Description

A library for property based testing

Added to portage

2025-10-21

imediff - 3.4.1
Ebuild name:

dev-util/imediff-3.4.1

Description

2-way/3-way merge tool (CLI, Ncurses)

Added to portage

2025-10-21

inline-snapshot - 0.30.1
Ebuild name:

dev-python/inline-snapshot-0.30.1

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-10-21

insipid-sphinx-theme - 0.4.3
Ebuild name:

dev-python/insipid-sphinx-theme-0.4.3

Description

Insipid Sphinx theme

Added to portage

2025-10-21

ipykernel - 6.31.0
Ebuild name:

dev-python/ipykernel-6.31.0

Description

IPython Kernel for Jupyter

Added to portage

2025-10-21

kactivitymanagerd - 6.5.0
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.0

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-10-21

kde-cli-tools - 6.5.0
Ebuild name:

kde-plasma/kde-cli-tools-6.5.0

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-10-21

kde-cli-tools-common - 6.5.0
Ebuild name:

kde-plasma/kde-cli-tools-common-6.5.0

Description

Added to portage

2025-10-21

kde-gtk-config - 6.5.0
Ebuild name:

kde-plasma/kde-gtk-config-6.5.0

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-10-21

kdecoration - 6.5.0
Ebuild name:

kde-plasma/kdecoration-6.5.0

Description

Plugin based library to create window decorations

Added to portage

2025-10-21

kdeplasma-addons - 6.5.0
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.0

Description

Extra Plasma applets and engines

Added to portage

2025-10-21

kdesu-gui - 6.5.0
Ebuild name:

kde-plasma/kdesu-gui-6.5.0

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-10-21

keditfiletype - 6.5.0
Ebuild name:

kde-plasma/keditfiletype-6.5.0

Description

File Type Editor

Added to portage

2025-10-21

kgamma - 6.5.0
Ebuild name:

kde-plasma/kgamma-6.5.0

Description

Screen gamma values kcontrol module

Added to portage

2025-10-21

kglobalacceld - 6.5.0
Ebuild name:

kde-plasma/kglobalacceld-6.5.0

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-10-21

kinfocenter - 6.5.0
Ebuild name:

kde-plasma/kinfocenter-6.5.0

Description

Utility providing information about the computer hardware

Added to portage

2025-10-21

kmenuedit - 6.5.0
Ebuild name:

kde-plasma/kmenuedit-6.5.0

Description

KDE Plasma menu editor

Added to portage

2025-10-21

kmymoney - 5.2.1-r2
Ebuild name:

app-office/kmymoney-5.2.1-r2

Description

Personal finance manager based on KDE Frameworks

Added to portage

2025-10-21

knighttime - 6.5.0
Ebuild name:

kde-plasma/knighttime-6.5.0

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-10-21

kombu - 5.6.0_rc2
Ebuild name:

dev-python/kombu-5.6.0_rc2

Description

AMQP Messaging Framework for Python

Added to portage

2025-10-21

kpipewire - 6.5.0
Ebuild name:

kde-plasma/kpipewire-6.5.0

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-10-21

krdp - 6.5.0
Ebuild name:

kde-plasma/krdp-6.5.0

Description

Library and examples for creating an RDP server

Added to portage

2025-10-21

kscreen - 6.5.0
Ebuild name:

kde-plasma/kscreen-6.5.0

Description

KDE Plasma screen management

Added to portage

2025-10-21

kscreenlocker - 6.5.0
Ebuild name:

kde-plasma/kscreenlocker-6.5.0

Description

Library and components for secure lock screen architecture

Added to portage

2025-10-21

ksshaskpass - 6.5.0
Ebuild name:

kde-plasma/ksshaskpass-6.5.0

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-10-21

ksystemstats - 6.5.0
Ebuild name:

kde-plasma/ksystemstats-6.5.0

Description

Plugin-based system monitoring daemon

Added to portage

2025-10-21

kwallet-pam - 6.5.0
Ebuild name:

kde-plasma/kwallet-pam-6.5.0

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-10-21

kwayland - 6.5.0
Ebuild name:

kde-plasma/kwayland-6.5.0

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-10-21

kwayland-integration - 6.5.0
Ebuild name:

kde-plasma/kwayland-integration-6.5.0

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-10-21

kwin - 6.5.0
Ebuild name:

kde-plasma/kwin-6.5.0

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-10-21

kwin-x11 - 6.5.0
Ebuild name:

kde-plasma/kwin-x11-6.5.0

Description

Flexible, composited X window manager

Added to portage

2025-10-21

kwrited - 6.5.0
Ebuild name:

kde-plasma/kwrited-6.5.0

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-10-21

layer-shell-qt - 6.5.0
Ebuild name:

kde-plasma/layer-shell-qt-6.5.0

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-10-21

libcaca - 0.99_beta19-r12
Ebuild name:

media-libs/libcaca-0.99_beta19-r12

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libcaca - 0.99_beta20-r1
Ebuild name:

media-libs/libcaca-0.99_beta20-r1

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libdwarf - 2.2.0
Ebuild name:

dev-libs/libdwarf-2.2.0

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2025-10-21

libkscreen - 6.5.0
Ebuild name:

kde-plasma/libkscreen-6.5.0

Description

Plasma screen management library

Added to portage

2025-10-21

libksysguard - 6.5.0
Ebuild name:

kde-plasma/libksysguard-6.5.0

Description

Task management and system monitoring library

Added to portage

2025-10-21

libplasma - 6.5.0
Ebuild name:

kde-plasma/libplasma-6.5.0

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-10-21

libtorrent - 0.16.1
Ebuild name:

net-libs/libtorrent-0.16.1

Description

BitTorrent library written in C++ for *nix

Added to portage

2025-10-21

libxslt - 1.1.43-r2
Ebuild name:

dev-libs/libxslt-1.1.43-r2

Description

XSLT libraries and tools

Added to portage

2025-10-21

logical-unification - 0.4.7
Ebuild name:

dev-python/logical-unification-0.4.7

Description

Logical unification in Python

Added to portage

2025-10-21

milou - 6.5.0
Ebuild name:

kde-plasma/milou-6.5.0

Description

Dedicated search application built on top of Baloo

Added to portage

2025-10-21

narwhals - 2.9.0
Ebuild name:

dev-python/narwhals-2.9.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-10-21

ocean-sound-theme - 6.5.0
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.0

Description

Ocean Sound Theme for Plasma

Added to portage

2025-10-21

oxygen - 6.5.0
Ebuild name:

kde-plasma/oxygen-6.5.0

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-10-21

oxygen-sounds - 6.5.0
Ebuild name:

kde-plasma/oxygen-sounds-6.5.0

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-10-21

pandoc-bin - 3.8.2.1
Ebuild name:

app-text/pandoc-bin-3.8.2.1

Description

Conversion between markup formats (binary package)

Added to portage

2025-10-21

patsy - 1.0.2
Ebuild name:

dev-python/patsy-1.0.2

Description

Python module to describe statistical models and design matrices

Added to portage

2025-10-21

pgmodeler - 1.2.2
Ebuild name:

dev-db/pgmodeler-1.2.2

Description

PostgreSQL Database Modeler

Added to portage

2025-10-21

pixi - 0.57.0
Ebuild name:

dev-util/pixi-0.57.0

Description

A package management and workflow tool

Added to portage

2025-10-21

plasma-activities - 6.5.0
Ebuild name:

kde-plasma/plasma-activities-6.5.0

Description

Core components for KDE's Activities System

Added to portage

2025-10-21

plasma-activities-stats - 6.5.0
Ebuild name:

kde-plasma/plasma-activities-stats-6.5.0

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-10-21

plasma-browser-integration - 6.5.0
Ebuild name:

kde-plasma/plasma-browser-integration-6.5.0

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-10-21

plasma-desktop - 6.5.0
Ebuild name:

kde-plasma/plasma-desktop-6.5.0

Description

KDE Plasma desktop

Added to portage

2025-10-21

plasma-disks - 6.5.0
Ebuild name:

kde-plasma/plasma-disks-6.5.0

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-10-21

plasma-firewall - 6.5.0
Ebuild name:

kde-plasma/plasma-firewall-6.5.0

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-10-21

plasma-integration - 6.5.0
Ebuild name:

kde-plasma/plasma-integration-6.5.0

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-10-21

plasma-login-sessions - 6.5.0
Ebuild name:

kde-plasma/plasma-login-sessions-6.5.0

Description

KDE Plasma login sessions

Added to portage

2025-10-21

plasma-meta - 6.5.0
Ebuild name:

kde-plasma/plasma-meta-6.5.0

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-10-21

plasma-nm - 6.5.0
Ebuild name:

kde-plasma/plasma-nm-6.5.0

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-10-21

plasma-pa - 6.5.0
Ebuild name:

kde-plasma/plasma-pa-6.5.0

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-10-21

plasma-sdk - 6.5.0
Ebuild name:

kde-plasma/plasma-sdk-6.5.0

Description

Useful applications for Plasma development

Added to portage

2025-10-21

plasma-systemmonitor - 6.5.0
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.0

Description

Monitor system sensors, process information and other system

Added to portage

2025-10-21

plasma-thunderbolt - 6.5.0
Ebuild name:

kde-plasma/plasma-thunderbolt-6.5.0

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-10-21

plasma-vault - 6.5.0
Ebuild name:

kde-plasma/plasma-vault-6.5.0

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-10-21

plasma-welcome - 6.5.0
Ebuild name:

kde-plasma/plasma-welcome-6.5.0

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-10-21

plasma-workspace - 6.5.0
Ebuild name:

kde-plasma/plasma-workspace-6.5.0

Description

KDE Plasma workspace

Added to portage

2025-10-21

plasma-workspace-wallpapers - 6.5.0
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.5.0

Description

Wallpapers for the Plasma workspace

Added to portage

2025-10-21

plasma5support - 6.5.0
Ebuild name:

kde-plasma/plasma5support-6.5.0

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2025-10-21

plymouth-kcm - 6.5.0
Ebuild name:

kde-plasma/plymouth-kcm-6.5.0

Description

KDE Plasma control module for Plymouth

Added to portage

2025-10-21

polkit-kde-agent - 6.5.0
Ebuild name:

kde-plasma/polkit-kde-agent-6.5.0

Description

PolKit agent module for KDE Plasma

Added to portage

2025-10-21

powerdevil - 6.5.0
Ebuild name:

kde-plasma/powerdevil-6.5.0

Description

Power management for KDE Plasma Shell

Added to portage

2025-10-21

print-manager - 6.5.0
Ebuild name:

kde-plasma/print-manager-6.5.0

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-10-21

pwsh-bin - 7.5.4
Ebuild name:

app-shells/pwsh-bin-7.5.4

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2025-10-21

pylint - 4.0.2
Ebuild name:

dev-python/pylint-4.0.2

Description

Python code static checker

Added to portage

2025-10-21

pytest-subtests - 0.15.0
Ebuild name:

dev-python/pytest-subtests-0.15.0

Description

Unittest subTest() support and subtests fixture

Added to portage

2025-10-21

qqc2-breeze-style - 6.5.0
Ebuild name:

kde-plasma/qqc2-breeze-style-6.5.0

Description

Breeze inspired QQC2 Style

Added to portage

2025-10-21

qtdeclarative - 6.10.0-r1
Ebuild name:

dev-qt/qtdeclarative-6.10.0-r1

Description

Qt Declarative (Quick 2)

Added to portage

2025-10-21

requests-file - 3.0.1
Ebuild name:

dev-python/requests-file-3.0.1

Description

File transport adapter for Requests

Added to portage

2025-10-21

rofi-calc - 2.5.0
Ebuild name:

x11-misc/rofi-calc-2.5.0

Description

Do live calculations in rofi

Added to portage

2025-10-21

rspec-core - 3.13.6
Ebuild name:

dev-ruby/rspec-core-3.13.6

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-10-21

rtorrent - 0.16.1
Ebuild name:

net-p2p/rtorrent-0.16.1

Description

BitTorrent Client using libtorrent

Added to portage

2025-10-21

sbcl - 2.5.8-r1
Ebuild name:

dev-lisp/sbcl-2.5.8-r1

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2025-10-21

sddm-kcm - 6.5.0
Ebuild name:

kde-plasma/sddm-kcm-6.5.0

Description

KDE Plasma control module for SDDM

Added to portage

2025-10-21

spectacle - 6.5.0
Ebuild name:

kde-plasma/spectacle-6.5.0

Description

Screenshot capture utility

Added to portage

2025-10-21

spek - 0.8.5-r3
Ebuild name:

media-sound/spek-0.8.5-r3

Description

Analyse your audio files by showing their spectrogram

Added to portage

2025-10-21

stunnel - 5.76
Ebuild name:

net-misc/stunnel-5.76

Description

TLS/SSL - Port Wrapper

Added to portage

2025-10-21

systemsettings - 6.5.0
Ebuild name:

kde-plasma/systemsettings-6.5.0

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-10-21

tree-sitter - 0.25.2
Ebuild name:

dev-python/tree-sitter-0.25.2

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2025-10-21

typer - 0.20.0
Ebuild name:

dev-python/typer-0.20.0

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2025-10-21

unixODBC - 2.3.14
Ebuild name:

dev-db/unixODBC-2.3.14

Description

Complete ODBC driver manager

Added to portage

2025-10-21

veracrypt - 1.26.7-r1
Ebuild name:

app-crypt/veracrypt-1.26.7-r1

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-10-21

wacomtablet - 6.5.0
Ebuild name:

kde-plasma/wacomtablet-6.5.0

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r410
Ebuild name:

net-libs/webkit-gtk-2.50.1-r410

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r411
Ebuild name:

net-libs/webkit-gtk-2.50.1-r411

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r600
Ebuild name:

net-libs/webkit-gtk-2.50.1-r600

Description

Open source web browser engine

Added to portage

2025-10-21

webkit-gtk - 2.50.1-r601
Ebuild name:

net-libs/webkit-gtk-2.50.1-r601

Description

Open source web browser engine

Added to portage

2025-10-21

webrtc-audio-processing - 2.1
Ebuild name:

media-libs/webrtc-audio-processing-2.1

Description

AudioProcessing library from the webrtc.org codebase

Added to portage

2025-10-21

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xca - 2.9.0
Ebuild name:

app-crypt/xca-2.9.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xdg-desktop-portal-kde - 6.5.0
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.5.0

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-10-21

xfsprogs - 6.17.0
Ebuild name:

sys-fs/xfsprogs-6.17.0

Description

XFS filesystem utilities

Added to portage

2025-10-21

xterm - 403
Ebuild name:

x11-terms/xterm-403

Description

Terminal Emulator for X Windows

Added to portage

2025-10-21

xvfbwrapper - 0.2.15
Ebuild name:

dev-python/xvfbwrapper-0.2.15

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2025-10-21

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 66.2 ms