Sponsored Content
Full Discussion: How to unlock my editor?
Operating Systems Solaris How to unlock my editor? Post 40151 by smartboy1461 on Wednesday 10th of September 2003 07:26:59 AM
Old 09-10-2003
How to unlock my editor?

When I want to use the editor ,whether vi or textedit,it prompts for entering a key. How can I disable this function?many thanks for offering solutions!
 

10 More Discussions You Might Find Interesting

1. Solaris

how to unlock user ID in solaris?

I only able to lock user ID with passwd -l username It seems there is no option for me to unlock ID in solaris? Is there any command as below? passwd -u username Appreciate someome can share with me the way to do it. (1 Reply)
Discussion started by: dwarf007
1 Replies

2. Shell Programming and Scripting

set EDITOR=vi -> default editor not setting for cron tab

Hi All, I am running a script , working very fine on cmd prompt. The problem is that when I open do crontab -e even after setting editor to vi by set EDITOR=vi it does not open a vi editor , rather it do as below..... ///////////////////////////////////////////////////// $ set... (6 Replies)
Discussion started by: aarora_98
6 Replies

3. UNIX for Dummies Questions & Answers

Unable to unlock users in Tru64

Hi Friends We have two node trucluster Tru64 4.0F Alpha Servers,In one of Tru64 4.0F Unix Server I am unable to unlock users, when I issue usermod command I will get following error /usr/sbin/usermod -x administrative_lock_applied=0 username account manager has exited unexpectedly - please... (0 Replies)
Discussion started by: madanmb
0 Replies

4. HP-UX

not able to unlock user

Hi, not able to unlock user eventhough executed /usr/lbin/modprpw -k username Thanks in advance (2 Replies)
Discussion started by: bpsunadm
2 Replies

5. AIX

how to unlock a dvd in HMC

When I do HMC upgrade, I download HMC code from IBM web site and burn it to a DVD disk, when I get the first DVD out of HMC's dvd rom and input the second DVD, it shows error: The requested device is already locked by the process: Install Corrective Service. Would you like to try to request a... (2 Replies)
Discussion started by: rainbow_bean
2 Replies

6. Shell Programming and Scripting

perl FileHandle Closure during after unlock

Hi we have one function which is used to append data the file in exclusive lock mode in aperl script. This script is executed by multiple threads at the same time. accessing the same file.this script runs throught the day. sometimes the file2.txt size is getting reduced. for eg from 10 M... (1 Reply)
Discussion started by: Shahul
1 Replies

7. Shell Programming and Scripting

Need help in lock and unlock and after the changes

Requirement:First i need to unlock the directory which i had a script for it.If i select app1 it should unlock the directory and after chnages in the script once need to lock the directory with lock command The below highlighed variables in lock and unlock has to be changed according... (2 Replies)
Discussion started by: bhas85
2 Replies

8. Shell Programming and Scripting

Where are lock and unlock commands?

I'm running cygwin bash on Windows 8.1. I would like to to write a OS neutral bash script that uses the commands like lock, block and unlock. Do I need to write lock, block and unlock myself in C++? I'm hoping someone has already written them. My bash script would look something like this:... (2 Replies)
Discussion started by: siegfried
2 Replies

9. Solaris

Solaris Automatic Account Unlock

Hello, It is to my understanding that when configuring the Solaris operating system to meet compliance standards, you must configure the "LOCK_AFTER_RETRIES" value in the "/etc/security/policy.conf" file to "YES", and then configure the "RETRIES" parameter in the "/etc/default/login" file to the... (4 Replies)
Discussion started by: TrustSovietBear
4 Replies

10. UNIX for Beginners Questions & Answers

Can't unlock encrypted disk

I use Debian default encryption disk encryption. Only /boot it's not encrypted. When I boot I need to type my password, and then I will be logged in. But now I can't login. It always says that I typed the wrong password, but I typed the correct password. I tried to boot in live-CD and try unlock... (3 Replies)
Discussion started by: zognadal
3 Replies
khim(n) 						    Kevin's Hacky Input Method							   khim(n)

__________________________________________________________________________________________________________________________________________________

NAME
khim - Provides key bindings for entering international characters on a keyboard that does not support them SYNOPSIS
package require Tcl package require khim ?1.0? ::khim::getOptions path ::khim::getConfig ::khim::setConfig version enabled compose map ::khim::showHelp path _________________________________________________________________ DESCRIPTION
This package provides a set of key bindings to allow a user to enter arbitrary characters on a keyboard that does not support them. It works by designating some seldom-used key of the keyboard as a "Compose" key (this key is distinct from any key so labeled, and is often "Pause," "F12" or "L2"), and having the "Compose" key, followed by a two-key sequence, have the effect of inserting some character in a widget. In addition, the "Compose" key, when struck twice in succession, brings up a dialog containing a Unicode character map, allowing arbitrary characters to be inserted. The vast bulk of the package's functionality is implemented in a single bindtag, KHIM. An application can request that any text or entry widget use the package to allow for entry of arbitrary characters by placing this binding tag ahead of the Text or Entry binding tag for the widget: text .t -width 80 -height 24 bindtags .t {.t KHIM Text . all} Note that the KHIM tag must precede the Text or Entry class binding, or the package will not function correctly. PROCEDURES
In addition to commands supporting the KHIM binding tag, the following commands are exported from the package: ::khim::getOptions path Posts a top-level modal dialog with the path name path that prompts the user for KHIM options. The user is allowed to reconfigure the key sequences for the "Compose" key, change the choice of key to use for the "Compose" function, and enable/disable the KHIM key bindings entirely. ::khim::getConfig Returns a Tcl script that restores the current configuration of KHIM: the enabled/disabled state, the choice of "Compose" key, and the key sequences that may be composed. This script is designed to be saved to a configuration file for use in a subsequent invoca- tion of the same application: # Save KHIM configuration set f [open ~/.khimrc w] puts $f [::khim::getConfig] close $f # Restore KHIM configuration source ~/.khimrc ::khim::setConfig version enabled compose map Restores an earlier saved configuration. Few, if any, applications will call this command in any other way than to evaluate it as returned from ::khim::getConfig. ::khim::showHelp path Displays a top-level dialog giving user-level help for KHIM; the dialog will have the path name path. LOCALISATION
Programmers who wish to make KHIM available in a non-English-speaking locale may do so by providing a .msg file with the appropriate localised text. The catalog requires the following messages: Apply Text that will appear on the "Apply" button in the dialog that sets KHIM options. Cancel Text that will appear on the "Cancel" button in several dialogs. Change Text that will appear on the "Change" button, which alters the binding of a pair of composed characters (creating or replacing as appropriate). Character Text that will appear on the label of the entry widget that accepts a character resulting from a composed sequence. {Compose Key} Window title for a dialog that prompts the user to strike the key that will be used for the "Compose" key. {Compose key:} Label that identifies a component showing the "Compose" key choice in the KHIM options dialog. {Composed sequence must be two characters long} Error message that is displayed if the user attempts to define a "Compose" sequence that is shorter or longer than two characters. Delete Text for a button that deletes a "Compose" sequence. Help... Text for a button that displays the KHIM user help dialog. HELPTEXT Complete text for the user-level help for KHIM. Refer to "en.msg" for the English-language version of the help. {Input key sequence} Text for a label of the entry widget that prompts the user for a two-character sequence to use with the "Compose" key. {Insert Character} Window title of the dialog box that displays a Unicode character map and prompts the user to select a character to insert. {Key sequences} Text for a label at the head of a listbox showing the composed sequences that are currently bound. {KHIM Controls} Window title for the dialog box that prompts for KHIM settings. {KHIM Help} Window title for the window that display help text for KHIM. OK Label for the OK button on several dialogs. Select code page: Label for a spinbox that prompts the user for a Unicode code page number. SELECT COMPOSE KEY A message, which should be composed in short lines, prompting the user to press the key that will become the "Compose" key in KHIM. Unicode... Text for a button that brings up the character map to select the character to which a composed sequence binds. {Use KHIM} Text for a checkbutton that asks whether the user wishes to use KHIM to manage composed key sequences. ACKNOWLEDGMENTS
KHIM was originally inspired by the key bindings that Brent Welch developed for the 'sedit' editor used in the 'exmh' mail user agent. The code for KHIM is entirely separate from that for 'sedit'. KEYWORDS
character, i18n, input, international, method khim 1.0 khim(n)
All times are GMT -4. The time now is 02:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy